diff options
author | Luke Smith <luke@lukesmith.xyz> | 2018-06-23 05:53:10 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-23 05:53:10 -0700 |
commit | 698d0052f0c616fa3c393634ca201be83596875b (patch) | |
tree | 88db940b23e036896058042953f712d9ab0a7afe /etc | |
parent | 52e0ddf0afc5d24afda6c226bb663fe10809bdc0 (diff) | |
parent | 325fd23aa6bb5264d31dd9971bcab02d27fdb110 (diff) |
Merge pull request #60 from ev-agelos/ping-1st-ip-in-mailsync
fix pinging ip if grep returns multiple ips
Diffstat (limited to 'etc')
-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 9f6f3c6..69400f5 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 default | cut -d ' ' -f 3` >/dev/null || exit + ping -q -t 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit notify() { osascript -e "display notification \"$2 in $1\" with title \"Youve got Mail\" subtitle \"Account: $account\"" && sleep 2 ;} else - ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit + ping -q -w 1 -c 1 `ip r | grep -m 1 default | cut -d ' ' -f 3` >/dev/null || exit notify() { pgrep -x dunst && notify-send -i ~/.config/mutt/etc/email.gif "$2 new mail(s) in \`$1\` account." ;} fi |