This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/sway/.config/waybar/custom/mail

11 lines
184 B
Plaintext
Raw Normal View History

2019-12-01 17:36:00 +01:00
mbsync -aq
NEW=$(find .mail/INBOX{,.{Contas,Faculdade,Git,Trabalhos}}/{cur,new} -type f |
grep -vE ',[^,]*S[^,]*$' | wc -l)
2019-11-23 02:23:15 +01:00
2019-12-01 17:36:00 +01:00
if (( "$NEW" > 0 ))
then
echo $NEW
fi
2019-11-23 02:23:15 +01:00
2019-12-01 17:36:00 +01:00
# vim:ft=sh