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