1
0
Fork 0
dotfiles/simpleDots/bin/themer
Joerg Elfring a26076b864 ALL NEW DOTFILES!
No more branches and no more Makefiles
2020-06-16 22:47:23 +02:00

23 lines
506 B
Bash
Executable file

#!/bin/bash
##################################################################
## Themer
# Switch Xresources colortheme from dark to light and back
# again.
#
statefile=~/.local/themer.state
state=$(cat $statefile)
case "$state" in
Dark) xrdb -merge ~/.bin/themer_Xresources.light
echo Light > $statefile
;;
Light) xrdb -merge ~/.bin/themer_Xresources.dark
echo Dark > $statefile
;;
esac
state=$(cat $statefile)
notify-send "Console Theme" "$state"