mirror of
https://github.com/FelixKratz/SketchyBar
synced 2024-11-23 11:53:02 +00:00
10 lines
191 B
Bash
Executable file
10 lines
191 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
NOTIFICATIONS="$(gh api notifications | jq '.[]')"
|
|
|
|
if [ "$NOTIFICATIONS" = "" ]; then
|
|
sketchybar -m --set $NAME icon=
|
|
else
|
|
sketchybar -m --set $NAME icon=
|
|
fi
|
|
|