SketchyBar/plugins/mailIndicator.sh
2021-10-22 00:27:28 +02:00

11 lines
305 B
Bash
Executable file

#!/usr/bin/env bash
RUNNING=$(osascript -e 'if application "Mail" is running then return 0')
COUNT=0
if [ $RUNNING == 0 ]; then
COUNT=$(osascript -e 'tell application "Mail" to return the unread count of inbox')
sketchybar -m --set $NAME label="$COUNT"
else
sketchybar -m --set $NAME label=
fi