Files
dotfiles/Scripts/.local/scripts/mail_fetch
2025-11-16 22:31:24 +00:00

8 lines
140 B
Bash
Executable File

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