#!/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