13 lines
359 B
Plaintext
13 lines
359 B
Plaintext
|
#!/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
|