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:
parent
e0421cdecd
commit
68319d2b55
2 changed files with 21 additions and 0 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue