2018-06-08 17:40:58 +02:00
|
|
|
#!/usr/bin/env bash
|
2018-03-06 07:38:22 +01:00
|
|
|
# This script will run offlineimap and check
|
|
|
|
# for new email if there is an internet connection.
|
|
|
|
#
|
|
|
|
# If it detects new mail, it uses mpv to play a
|
|
|
|
# notification sound: notify.opus
|
|
|
|
#
|
|
|
|
# I have this run as a cronjob every 5 minutes.
|
|
|
|
|
2018-05-04 22:10:21 +02:00
|
|
|
export DISPLAY=:0.0
|
|
|
|
|
|
|
|
# Checks for internet connection and set notification script.
|
|
|
|
# Settings are different for MacOS (Darwin) systems.
|
2018-03-13 05:55:21 +01:00
|
|
|
if [ "$(uname)" == "Darwin" ]
|
|
|
|
then
|
2018-06-23 10:26:06 +02:00
|
|
|
ping -q -t 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit
|
2018-05-04 22:10:21 +02:00
|
|
|
notify() { osascript -e "display notification \"$2 in $1\" with title \"Youve got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
|
2018-03-13 05:55:21 +01:00
|
|
|
else
|
2018-06-23 10:26:06 +02:00
|
|
|
ping -q -w 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit
|
2018-05-04 22:10:21 +02:00
|
|
|
notify() { pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;}
|
2018-03-13 05:55:21 +01:00
|
|
|
fi
|
2018-03-06 07:38:22 +01:00
|
|
|
|
2018-06-18 01:51:22 +02:00
|
|
|
echo 🔃 > ~/.config/mutt/.dl
|
|
|
|
pkill -RTMIN+12 i3blocks
|
|
|
|
|
2018-05-04 22:10:21 +02:00
|
|
|
# Run offlineimap. You can feed this script different settings.
|
2018-03-19 00:43:09 +01:00
|
|
|
offlineimap -o "$@"
|
2018-06-18 01:51:22 +02:00
|
|
|
rm -f ~/.config/mutt/.dl
|
|
|
|
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.
|
2018-04-12 00:40:44 +02:00
|
|
|
for account in $(ls ~/.mail)
|
|
|
|
do
|
2018-05-04 22:10:21 +02:00
|
|
|
#List unread messages newer than last mailsync and count them
|
|
|
|
newcount=$(find ~/.mail/$account/INBOX/new/ -type f -newer ~/.config/mutt/etc/mailsynclastrun 2> /dev/null | wc -l)
|
|
|
|
if [ "$newcount" -gt "0" ]
|
|
|
|
then
|
|
|
|
notify "$account" "$newcount" & disown
|
2018-07-05 19:18:22 +02:00
|
|
|
mpv --really-quiet ~/.config/mutt/etc/notify.opus
|
2018-07-16 16:05:31 +02:00
|
|
|
notmuch new
|
2018-05-04 22:10:21 +02:00
|
|
|
fi
|
2018-04-12 00:40:44 +02:00
|
|
|
done
|
|
|
|
|
|
|
|
#Create a touch file that indicates the time of the last run of mailsync
|
|
|
|
touch ~/.config/mutt/etc/mailsynclastrun
|