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