mirror of
https://github.com/theniceboy/.config.git
synced 2025-12-26 14:44:57 +08:00
6 lines
165 B
Bash
Executable file
6 lines
165 B
Bash
Executable file
result=$(ps ax|grep -v grep|grep screenkey)
|
|
if [ "$result" == "" ]; then
|
|
eval "screenkey --bg-color white --font-color black &"
|
|
else
|
|
eval "killall screenkey"
|
|
fi
|