voidrice/.scripts/i3weather

16 lines
698 B
Text
Raw Normal View History

2018-04-22 17:39:23 -07:00
#!/bin/bash
2018-05-14 20:37:32 +08:00
### This is only if your location isn't automatically detected, otherwise you can leave it blank.
location=""
2018-04-22 17:39:23 -07:00
2018-07-12 15:47:56 -04:00
[[ "$location" != "" ]] && location="~${location// /+}"
2018-04-22 17:39:23 -07:00
2018-07-12 15:47:56 -04:00
[[ $BLOCK_BUTTON = "1" ]] && st -e w3m wttr.in/$location
2018-04-22 17:39:23 -07:00
2018-05-14 21:18:37 +08:00
curl -s wttr.in/$location > ~/.weatherreport
2018-04-22 17:39:23 -07:00
2018-07-12 15:47:56 -04:00
ping -q -w 1 -c 1 `ip r | grep default | cut -d ' ' -f 3` >/dev/null || exit
2018-07-05 10:41:41 +03:00
echo -n $(cat ~/.weatherreport | sed '16q;d' | sed -e 's/[^m]*m//g' | grep -o "[0-9]*%" | sort -n | sed -e '$!d' | sed -e "s/^/☔ /g")
2018-04-22 17:39:23 -07:00
2018-07-05 10:41:41 +03:00
cat ~/.weatherreport | sed '13q;d' | sed -e 's/[^m]*m//g;s/[^0-9]/ /g;s/ /\n/g;/^s*$/d' | grep [0-9] | sort -n | sed -e 1b -e '$!d' | tr '\n' ' ' | awk '{print " ❄️",$1 "°","☀️",$2 "°"}'