12 lines
205 B
Bash
Executable file
12 lines
205 B
Bash
Executable file
#!/bin/sh
|
|
|
|
theme=$1
|
|
|
|
if which kitty; then
|
|
cat $HOME/darkrc/kitty_$theme.conf |\
|
|
grep '^[[:alpha:]]' |\
|
|
sed -s 's/ \+/=/' |\
|
|
sed -s 's/^.*$/set-colors --all \0/' |\
|
|
sort |\
|
|
kitty @ >/dev/null
|
|
fi
|