mail-count: Add sh version

Add POSIX compliant sh version of the mail-count script. Additionally
add comments to the bash version.
This commit is contained in:
coderkun 2021-09-12 20:54:52 +02:00
parent e0421cdecd
commit 68319d2b55
2 changed files with 21 additions and 0 deletions

View File

@ -1,11 +1,15 @@
#!/bin/bash
# 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

17
mail-count.sh Executable file
View File

@ -0,0 +1,17 @@
#!/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