2020-05-15 17:54:38 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2020-05-15 20:56:33 +02:00
|
|
|
# Toggle screenkey.
|
|
|
|
|
2020-05-15 17:54:38 +02:00
|
|
|
[ "$(pgrep screenkey)" ] && { killall screenkey && exit ;}
|
|
|
|
|
|
|
|
screenkey -s small --bg-color "$(awk '/.*selbg.*/ { print $2 }' ~/.config/Xresources)"
|