voidrice/.scripts/statusbar/weather

16 lines
651 B
Text
Raw Normal View History

2018-09-04 18:16:38 +00:00
#!/bin/sh
2018-12-21 17:35:24 +00:00
[ "$(stat -c %y .weatherreport | awk '{print $1}')" != "$(date '+%Y-%m-%d')" ] && getforecast
2018-04-23 00:39:23 +00:00
case $BLOCK_BUTTON in
2019-01-02 16:09:31 +00:00
1) $TERMINAL -e less -S /tmp/weatherreport ;;
3) pgrep -x dunst >/dev/null && notify-send "<b>🌈 Weather module:</b>
2018-11-12 20:16:45 +00:00
- Click for wttr.in forecast.
☔: Chance of rain/snow
❄: Daily low
🌞: Daily high" ;;
esac
2018-04-23 00:39:23 +00:00
2019-01-02 16:09:31 +00: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-23 00:39:23 +00:00
2019-01-02 16:09:31 +00: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 "°"}'