mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-12-02 16:19:14 +00:00
8 lines
144 B
Bash
8 lines
144 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
if [ "$(pgrep -x "caffeinate")" = "" ]; then
|
||
|
sketchybar -m set $NAME icon
|
||
|
else
|
||
|
sketchybar -m set $NAME icon
|
||
|
fi
|