add script to change colors

This commit is contained in:
Michele Guerini Rocco 2020-07-06 11:57:43 +02:00
parent 3cd70ee110
commit 7a9999725d
Signed by: rnhmjoj
GPG Key ID: BFBAF4C975F76450

12
scripts/color-mode Executable file
View File

@ -0,0 +1,12 @@
#!/bin/sh
xcolor() { xrdb -query | grep -Po "color$1:\s+\K#\w+"; }
xrdb -override $XDG_CONFIG_HOME/x/$1
test "$1" == light &&
xsetroot -fg $(xcolor 14) -bg $(xcolor 11) -bitmap ~/img/tiles/tile.xbm
test "$1" == dark &&
xsetroot -fg $(xcolor 6) -bg $(xcolor 0) -bitmap ~/img/tiles/tile.xbm
pkill -USR1 'qutebrowser|urxvt'
$XDG_CONFIG_HOME/bspwm/bspwmrc