2018-09-04 14:16:38 -04:00
|
|
|
#!/bin/sh
|
2019-01-02 11:11:38 -05:00
|
|
|
[ "$(stat -c %y /tmp/weatherreport | awk '{print $1}')" != "$(date '+%Y-%m-%d')" ] && getforecast
|
2018-04-22 17:39:23 -07:00
|
|
|
|
2018-11-11 21:27:04 -05:00
|
|
|
case $BLOCK_BUTTON in
|
2019-03-23 10:20:43 +01:00
|
|
|
1) $TERMINAL -e less -S -R /tmp/weatherreport ;;
|
2018-11-11 21:27:04 -05:00
|
|
|
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
|
|
|
|
2019-01-02 11:09:31 -05:00
|
|
|
printf "%s" "$(sed '16q;d' /tmp/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
|
|
|
|
2019-01-02 11:09:31 -05:00
|
|
|
sed '13q;d' /tmp/weatherreport | grep -o "m\\(-\\)*[0-9]\\+" | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " ❄️",$1 "°","🌞",$2 "°"}'
|