diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-01-17 19:14:34 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-01-17 19:14:34 +0300 |
commit | 5eee5b44924bf9079a67d5bc7612bfad56ddeed3 (patch) | |
tree | 0408697aba64aa3f012f134bdc35316841a4b404 /dotfiles/.scripts/mailcheck | |
parent | 8f672e8a119e9efd23272f7cb0ff4550872f9d47 (diff) | |
download | swayrice-5eee5b44924bf9079a67d5bc7612bfad56ddeed3.tar.gz swayrice-5eee5b44924bf9079a67d5bc7612bfad56ddeed3.zip |
config restructuring and cleanup
Diffstat (limited to 'dotfiles/.scripts/mailcheck')
-rwxr-xr-x | dotfiles/.scripts/mailcheck | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/dotfiles/.scripts/mailcheck b/dotfiles/.scripts/mailcheck deleted file mode 100755 index bf49de9..0000000 --- a/dotfiles/.scripts/mailcheck +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/sh -# Sync mail and give notification if there is new mail. - -# Run only if user logged in (prevent cron errors) -w | grep "^$USER\W" >/dev/null || exit - -# Checks for internet connection and set notification script. -ping -q -c 1 1.1.1.1 > /dev/null || exit -command -v notify-send >/dev/null || echo "Note that \`libnotify\` or \`libnotify-send\` should be installed for pop-up mail notifications with this script." - -export DISPLAY=:0.0 - -notify() { - notify-send "📬 Email" "$2 new mail(s) in \`$1\` account." - mplayer $HOME/.soundalerts/mail.mp3 -} - -# Run mbsync. You can feed this script different settings. -if [ $# -eq 0 ]; then - mbsync -a -else - mbsync "$@" -fi - -# 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/" "$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) - [ "$newcount" -gt "0" ] && notify "$acc" "$newcount" & -done -notmuch new 2>/dev/null - -#Create a touch file that indicates the time of the last run of mailsync -touch "$HOME/.config/mutt/.mailsynclastrun" |