diff options
author | Davide <davide.crucitti@yahoo.it> | 2019-02-12 00:03:06 +0100 |
---|---|---|
committer | Davide <davide.crucitti@yahoo.it> | 2019-02-12 00:03:06 +0100 |
commit | ec4f2c94ddee6ba1f8149a6355d64cbd4a982521 (patch) | |
tree | 84b8af1d7651de63992e91c007a40475bf1c4c0e /etc | |
parent | 73383a84ed3826dbd13d8502671cc9f6b50d824c (diff) |
Removed redundant ping command from Mac and default check
Diffstat (limited to 'etc')
-rwxr-xr-x | etc/mailsync.sh | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/etc/mailsync.sh b/etc/mailsync.sh index 6446979..d8615ad 100755 --- a/etc/mailsync.sh +++ b/etc/mailsync.sh @@ -10,13 +10,12 @@ export DISPLAY=:0.0 # Checks for internet connection and set notification script. +ping -q -c 1 1.1.1.1 > /dev/null || exit # Settings are different for MacOS (Darwin) systems. if [ "$(uname)" = "Darwin" ] then - ping -q -c 1 1.1.1.1 > /dev/null || exit notify() { osascript -e "display notification \"$2 in $1\" with title \"You've got Mail\" subtitle \"Account: $account\"" && sleep 2 ;} else - ping -q -c 1 1.1.1.1 > /dev/null || exit notify() { mpv --really-quiet ~/.config/mutt/etc/notify.opus & pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;} fi |