You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

44 lines
1.4 KiB

  1. #!/usr/bin/env sh
  2. # This script will run offlineimap and check
  3. # for new email if there is an internet connection.
  4. #
  5. # If it detects new mail, it uses mpv to play a
  6. # notification sound: notify.opus
  7. #
  8. # I have this run as a cronjob every 5 minutes.
  9. export DISPLAY=:0.0
  10. # Checks for internet connection and set notification script.
  11. ping -q -c 1 1.1.1.1 > /dev/null || exit
  12. # Settings are different for MacOS (Darwin) systems.
  13. if [ "$(uname)" = "Darwin" ]
  14. then
  15. notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;}
  16. else
  17. notify() { mpv --really-quiet ~/.config/mutt/bin/notify.opus & pgrep -x dunst && notify-send -i ~/.config/mutt/bin/email.gif "$2 new mail(s) in \`$1\` account." ;}
  18. fi
  19. echo " 🔃" > /tmp/imapsyncicon
  20. pkill -RTMIN+12 i3blocks
  21. # Run offlineimap. You can feed this script different settings.
  22. offlineimap -o "$@"
  23. rm -f /tmp/imapsyncicon
  24. pkill -RTMIN+12 i3blocks
  25. # Check all accounts/mailboxes for new mail. Notify if there is new content.
  26. for account in $(ls ~/.local/share/mail)
  27. do
  28. #List unread messages newer than last mailsync and count them
  29. newcount=$(find ~/.mail/"$account"/INBOX/new/ -type f -newer ~/.config/mutt/bin/.mailsynclastrun 2> /dev/null | wc -l)
  30. if [ "$newcount" -gt "0" ]
  31. then
  32. notify "$account" "$newcount" &
  33. fi
  34. done
  35. notmuch new
  36. #Create a touch file that indicates the time of the last run of mailsync
  37. touch ~/.config/mutt/bin/.mailsynclastrun