Files
dotfiles/Scripts/.local/scripts/mail_fetch
Aryadev Chavali 84fb1be64c (Scripts|SystemD)+mail fetch script and a SystemDservice/timer for it
Syncs every 3 hours.  Produces a notify-send message on fetching.
2023-10-18 19:58:45 +01:00

7 lines
140 B
Bash
Executable File

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