mail_check.sh 397 B

12345678910111213
  1. #!/bin/sh
  2. ## This is my (demuredemeanor) polybar script for checking unread mail count.
  3. ## This script checks offlineimap's cache and gets a count of unread messages.
  4. STATUS="$(find ${HOME}/.mail/*/INBOX/new -type f 2>/dev/null | wc -l)"
  5. if [ $STATUS -gt 0 ];then
  6. ## Set text foreground to yellow
  7. echo "%{F#DE935F}%{O2}%{O2}${STATUS}%{O2}"
  8. else
  9. echo "%{F#979997}%{O2}%{O2}"
  10. fi