2018-09-04 14:16:38 -04:00
|
|
|
#!/bin/sh
|
2018-05-14 20:37:32 +08:00
|
|
|
### This is only if your location isn't automatically detected, otherwise you can leave it blank.
|
2018-11-11 21:27:04 -05:00
|
|
|
location="Statesboro"
|
2018-04-22 17:39:23 -07:00
|
|
|
|
2018-11-11 21:27:04 -05:00
|
|
|
case $BLOCK_BUTTON in
|
|
|
|
1) $TERMINAL -e popweather ;;
|
|
|
|
3) pgrep -x dunst >/dev/null && notify-send "<b>🌈 Weather module:</b>
|
2018-11-12 15:16:45 -05:00
|
|
|
- Click for wttr.in forecast.
|
2018-11-11 21:27:04 -05:00
|
|
|
☔: Chance of rain/snow
|
|
|
|
❄: Daily low
|
|
|
|
🌞: Daily high" ;;
|
|
|
|
esac
|
2018-04-22 17:39:23 -07:00
|
|
|
|
2018-11-11 21:27:04 -05:00
|
|
|
[ "$location" != "" ] && location="$location+"
|
2018-04-22 17:39:23 -07:00
|
|
|
|
2018-09-16 03:56:27 +02:00
|
|
|
ping -q -w 1 -c 1 "$(ip r | grep default | tail -1 | cut -d ' ' -f 3)" >/dev/null || exit
|
2018-04-22 17:39:23 -07:00
|
|
|
|
2018-09-16 03:56:27 +02:00
|
|
|
curl -s wttr.in/$location > ~/.weatherreport
|
2018-07-12 15:47:56 -04:00
|
|
|
|
2018-09-04 14:16:38 -04:00
|
|
|
printf "%s" "$(sed '16q;d' ~/.weatherreport | grep -wo "[0-9]*%" | sort -n | sed -e '$!d' | sed -e "s/^/☔ /g" | tr -d '\n')"
|
2018-04-22 17:39:23 -07:00
|
|
|
|
2018-11-11 21:27:04 -05:00
|
|
|
sed '13q;d' ~/.weatherreport | grep -o "m\\(-\\)*[0-9]\\+" | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " ❄️",$1 "°","🌞",$2 "°"}'
|