SketchyBar/plugins/mailIndicator.sh
2021-08-13 15:58:00 +02:00

11 lines
317 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 mailIndicator label "$COUNT"
else
sketchybar -m set mailIndicator label 
fi