10 lines
294 B
Bash
Executable file
10 lines
294 B
Bash
Executable file
#!/bin/sh
|
|
F=$(fc-list :mono: : family | sort -R | \
|
|
rofi -no-disable-history -dmenu -i )
|
|
C=$(ls ~/.config/stcolors/ | sort -R |rofi -dmenu )
|
|
S=$(seq 26 -2 10 | sed s/26/18/ | rofi -dmenu )
|
|
COLS=$(cat ~/.config/stcolors/${C})
|
|
echo ${COLS}
|
|
set -x
|
|
st-colordefaults ${COLS} -f "${F}-${S}"
|
|
|