colorscheme update + some tmux updates

This commit is contained in:
Arthur Khachaturov 2024-08-20 02:20:14 +03:00
parent 59daa951f9
commit 3db255cc32
No known key found for this signature in database
GPG key ID: CAC2B7EB6DF45D55
12 changed files with 153 additions and 432 deletions

View file

@ -1,2 +1,2 @@
exec /usr/bin/dmenu -fn 'Mononoki Nerd Font Propo:size=12' -nb '#3a3a3a' -nf '#bbbbbb' -sb '#db8402' -sf '#eeeeee' "$@"
exec /usr/bin/dmenu -fn 'Mononoki Nerd Font Propo:size=12' -nb '#232323' -sb '#3a3a3a' -nf '#a0a0a0' -sf '#ffffff' "$@"
# vim: ft=sh

16
.local/bin/scripts/printcolors Executable file
View file

@ -0,0 +1,16 @@
#!/bin/bash
if [ -n "$1" ]; then
cols=6
offset=-15
colors=({16..255})
else
cols=8
offset=1
colors=({0..15})
fi
for i in "${colors[@]}"; do
printf '\x1b[38;5;%dmcolor%03d\x1b[0m' "$i" "$i"
[ $(((i + offset) % cols)) -eq 0 ] && printf "\n" || printf " "
done

Binary file not shown.

Before

Width:  |  Height:  |  Size: 26 KiB

After

Width:  |  Height:  |  Size: 190 KiB

Before After
Before After