Update many things and add new colorscheme, termite config, tilda config, Xresource, etc...
This commit is contained in:
16
scripts/bin/change_termite_colorscheme
Executable file
16
scripts/bin/change_termite_colorscheme
Executable file
@ -0,0 +1,16 @@
|
||||
#!/bin/bash
|
||||
|
||||
termite_conf=~/.config/termite
|
||||
|
||||
if [ -f "$termite_conf"/light.config ]; then
|
||||
mv "$termite_conf/config" "$termite_conf/dark.config"
|
||||
mv "$termite_conf/light.config" "$termite_conf/config"
|
||||
elif [ -f "$termite_conf"/dark.config ]; then
|
||||
mv "$termite_conf/config" "$termite_conf/light.config"
|
||||
mv "$termite_conf/dark.config" "$termite_conf/config"
|
||||
else
|
||||
echo "Error while changing colorscheme!"
|
||||
return -1
|
||||
fi
|
||||
|
||||
killall -USR1 termite
|
Reference in New Issue
Block a user