scripts/mail-count.sh

18 lines
328 B
Bash
Raw Normal View History

#!/bin/sh
# Count the number of unread emails and return the count in the i3/sway bar
# format.
# Settings
MAILDIRNEW="$HOME/Dokumente/eMails/*/INBOX/new/"
# Count new mails
MAILNEW="$(find $MAILDIRNEW -type f | wc -l)"
# Print count in i3/sway bar format
echo $MAILNEW
echo $MAILNEW
[ ${MAILNEW} -ge 1 ] && exit 33
exit 0