41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env sh
 | 
						|
# 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.
 | 
						|
 | 
						|
# Checks for internet connection and set notification script.
 | 
						|
ping -q -c 1 1.1.1.1 > /dev/null || exit
 | 
						|
 | 
						|
export DISPLAY=:0.0
 | 
						|
 | 
						|
# Settings are different for MacOS (Darwin) systems.
 | 
						|
if [ "$(uname)" = "Darwin" ]; then
 | 
						|
	notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
 | 
						|
else
 | 
						|
	notify() { paplay "$HOME/.config/mutt/bin/notify.ogg" & pgrep -x dunst && notify-send "📬 $2 new mail(s) in \`$1\` account." ;}
 | 
						|
fi
 | 
						|
 | 
						|
echo " 🔃" > /tmp/imapsyncicon
 | 
						|
pkill -RTMIN+12 i3blocks
 | 
						|
 | 
						|
# Run offlineimap. You can feed this script different settings.
 | 
						|
offlineimap -o "$@"
 | 
						|
rm -f /tmp/imapsyncicon
 | 
						|
pkill -RTMIN+12 i3blocks
 | 
						|
 | 
						|
# Check all accounts/mailboxes for new mail. Notify if there is new content.
 | 
						|
for account in "$HOME/.local/share/mail/"*
 | 
						|
do
 | 
						|
	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" &
 | 
						|
done
 | 
						|
notmuch new
 | 
						|
 | 
						|
#Create a touch file that indicates the time of the last run of mailsync
 | 
						|
touch "$HOME/.config/mutt/bin/.mailsynclastrun"
 |