2018-10-07 15:45:44 -04:00
|
|
|
#!/usr/bin/env sh
|
2019-04-16 13:52:37 -04:00
|
|
|
# Sync mail and give notification if there is new mail.
|
2018-03-05 23:38:22 -07:00
|
|
|
|
2018-05-04 13:10:21 -07:00
|
|
|
# Checks for internet connection and set notification script.
|
2019-02-12 00:03:06 +01:00
|
|
|
ping -q -c 1 1.1.1.1 > /dev/null || exit
|
2019-03-13 16:50:41 -04:00
|
|
|
|
|
|
|
export DISPLAY=:0.0
|
|
|
|
|
2018-05-04 13:10:21 -07:00
|
|
|
# Settings are different for MacOS (Darwin) systems.
|
2019-03-13 16:50:41 -04:00
|
|
|
if [ "$(uname)" = "Darwin" ]; then
|
2018-08-24 00:49:27 -04:00
|
|
|
notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
|
2018-03-13 10:25:21 +05:30
|
|
|
else
|
2019-04-11 23:16:21 -04:00
|
|
|
notify() { paplay "$HOME/.config/mutt/bin/notify.ogg" & notify-send "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account." ;}
|
2018-03-13 10:25:21 +05:30
|
|
|
fi
|
2018-03-05 23:38:22 -07:00
|
|
|
|
2019-02-18 20:44:25 -05:00
|
|
|
echo " 🔃" > /tmp/imapsyncicon
|
2018-06-17 19:51:22 -04:00
|
|
|
pkill -RTMIN+12 i3blocks
|
|
|
|
|
2019-04-11 13:39:47 -04:00
|
|
|
# Run mbsync. You can feed this script different settings.
|
|
|
|
mbsync -a "$@"
|
2019-02-18 20:44:25 -05:00
|
|
|
rm -f /tmp/imapsyncicon
|
2018-06-17 19:51:22 -04:00
|
|
|
pkill -RTMIN+12 i3blocks
|
2018-03-05 23:38:22 -07:00
|
|
|
|
2018-05-04 13:10:21 -07:00
|
|
|
# Check all accounts/mailboxes for new mail. Notify if there is new content.
|
2019-03-13 16:50:41 -04:00
|
|
|
for account in "$HOME/.local/share/mail/"*
|
2018-04-11 17:40:44 -05:00
|
|
|
do
|
2019-03-13 16:50:41 -04:00
|
|
|
acc="$(echo "$account" | sed "s/.*\///")"
|
|
|
|
newcount=$(find "$HOME/.local/share/mail/$acc/INBOX/new/" -type f -newer "$HOME/.config/mutt/bin/.mailsynclastrun" 2> /dev/null | wc -l)
|
|
|
|
[ "$newcount" -gt "0" ] && notify "$acc" "$newcount" &
|
2018-04-11 17:40:44 -05:00
|
|
|
done
|
2019-04-11 13:39:47 -04:00
|
|
|
notmuch new 2>/dev/null
|
2018-04-11 17:40:44 -05:00
|
|
|
|
|
|
|
#Create a touch file that indicates the time of the last run of mailsync
|
2019-03-13 16:50:41 -04:00
|
|
|
touch "$HOME/.config/mutt/bin/.mailsynclastrun"
|