mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-27 22:00:20 +00:00
10 lines
187 B
Bash
10 lines
187 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ "$(pgrep -x "caffeinate")" = "" ]; then
|
||
|
caffeinate &disown;
|
||
|
sketchybar -m set $NAME icon
|
||
|
else
|
||
|
killall caffeinate
|
||
|
sketchybar -m set $NAME icon
|
||
|
fi
|