diff options
author | motte <rihardsoodla@protonmail.com> | 2019-02-05 15:39:58 +0200 |
---|---|---|
committer | motte <rihardsoodla@protonmail.com> | 2019-02-05 15:39:58 +0200 |
commit | 1678e98de29537eca90f4fa353a7023085cc14d2 (patch) | |
tree | a15df2b240e3d192fbace038ba278164b2c82fb3 | |
parent | 758516a9cb20d76d0eb5372eb489d3480ed7e570 (diff) |
ping 1.1.1.1 instead of gateway
-rwxr-xr-x | etc/mailsync.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/mailsync.sh b/etc/mailsync.sh index 95131e8..826cf8a 100755 --- a/etc/mailsync.sh +++ b/etc/mailsync.sh @@ -13,10 +13,10 @@ export DISPLAY=:0.0 # Settings are different for MacOS (Darwin) systems. if [ "$(uname)" = "Darwin" ] then - ping -q -t 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit + 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 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit + 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 |