7 lines
140 B
Bash
Executable File
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"
|