Files
dotfiles/Scripts/.local/scripts/mail_fetch

8 lines
152 B
Bash
Executable File

#!/usr/bin/env sh
prev=$(notmuch count)
mbsync -a
notmuch new
new=$(notmuch count)
notify-send "mail_fetch: Fetched $(echo $new - $prev | bc -l) mail"