9d56d3e272
Also add simple description comment to all script.
8 lines
179 B
Bash
Executable File
8 lines
179 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Toggle screenkey.
|
|
|
|
[ "$(pgrep screenkey)" ] && { killall screenkey && exit ;}
|
|
|
|
screenkey -s small --bg-color "$(awk '/.*selbg.*/ { print $2 }' ~/.config/Xresources)"
|