8 lines
131 B
Bash
Executable File
8 lines
131 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Toggle screenkey.
|
|
|
|
[ "$(pgrep screenkey)" ] && { killall screenkey && exit ;}
|
|
|
|
screenkey -s small --bg-color "${SBG}"
|