commit 38632ee4ea03f0fed52baaa69c40ac22c0b117f2
parent 2e18e14336d808708c93f3173772de4426462534
Author: Luke Smith <luke@lukesmith.xyz>
Date: Mon, 11 Feb 2019 18:11:16 -0500
Merge pull request #121 from davidoskky/ttl-remove
Removed TTL limit from ping
Diffstat:
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git 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 -t 1 -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 -W 1 -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