6 lines
158 B
Plaintext
6 lines
158 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
[ "$(pgrep screenkey)" ] && { killall screenkey && exit ;}
|
||
|
|
||
|
screenkey -s small --bg-color "$(awk '/.*selbg.*/ { print $2 }' ~/.config/Xresources)"
|