Merge pull request #114 from kubetz/i3weather

Reposition ping and add failsafe tail
This commit is contained in:
Luke Smith 2018-09-15 23:50:24 -04:00 committed by GitHub
commit 8e81c30a5d

View file

@ -6,9 +6,9 @@ location=""
[ "$BLOCK_BUTTON" = "1" ] && $TERMINAL -e popweather
curl -s wttr.in/$location > ~/.weatherreport
ping -q -w 1 -c 1 "$(ip r | grep default | tail -1 | cut -d ' ' -f 3)" >/dev/null || exit
ping -q -w 1 -c 1 "$(ip r | grep default | cut -d ' ' -f 3)" >/dev/null || exit
curl -s wttr.in/$location > ~/.weatherreport
printf "%s" "$(sed '16q;d' ~/.weatherreport | grep -wo "[0-9]*%" | sort -n | sed -e '$!d' | sed -e "s/^/☔ /g" | tr -d '\n')"