mutt-wizard/bin/mailsync

44 lines
1.5 KiB
Plaintext
Raw Normal View History

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
2019-05-01 19:51:22 -04:00
# Run only if user logged in (prevent cron errors)
pgrep -cu "$USER" >/dev/null || exit
2019-05-01 19:51:22 -04:00
# Checks for internet connection and set notification script.
ping -q -c 1 1.1.1.1 > /dev/null || exit
2019-04-26 10:42:35 -04:00
command -v notify-send >/dev/null || echo "Note that \`libnotify\` or \`libnotify-send\` should be installed for pop-up mail notifications with this script."
2019-03-13 16:50:41 -04:00
export DISPLAY=:0.0
# 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 ;}
else
2019-04-20 19:02:08 -04:00
notify() { notify-send "mutt-wizard" "📬 $2 new mail(s) in \`$1\` account." ;}
fi
2018-03-05 23:38:22 -07:00
2019-04-26 21:19:11 -04:00
echo " 🔃" > /tmp/imapsyncicon_$USER
pkill -RTMIN+12 i3blocks
2019-04-11 13:39:47 -04:00
# Run mbsync. You can feed this script different settings.
if [ $# -eq 0 ]; then
mbsync -a
else
mbsync "$@"
fi
2019-04-26 21:19:11 -04:00
rm -f /tmp/imapsyncicon_$USER
pkill -RTMIN+12 i3blocks
2018-03-05 23:38:22 -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/"*
do
2019-03-13 16:50:41 -04:00
acc="$(echo "$account" | sed "s/.*\///")"
2019-04-22 09:26:37 -04: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/.mailsynclastrun" 2> /dev/null | wc -l)
2019-03-13 16:50:41 -04:00
[ "$newcount" -gt "0" ] && notify "$acc" "$newcount" &
done
2019-04-11 13:39:47 -04:00
notmuch new 2>/dev/null
#Create a touch file that indicates the time of the last run of mailsync
2019-04-22 09:33:26 -04:00
touch "$HOME/.config/mutt/.mailsynclastrun"