colorscheme update + some tmux updates
This commit is contained in:
parent
59daa951f9
commit
3db255cc32
12 changed files with 153 additions and 432 deletions
|
@ -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
16
.local/bin/scripts/printcolors
Executable 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 |
Loading…
Add table
Add a link
Reference in a new issue