scripts/mail-count.sh
coderkun 68319d2b55 mail-count: Add sh version
Add POSIX compliant sh version of the mail-count script. Additionally
add comments to the bash version.
2021-09-12 20:54:52 +02:00

18 lines
328 B
Bash
Executable file

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