summaryrefslogtreecommitdiff
path: root/wm/dwmblocks/dwmblocks-forecast
diff options
context:
space:
mode:
authorstkhan <personal@slickd.xyz>2023-03-27 20:57:44 -0500
committerstkhan <personal@slickd.xyz>2023-03-27 20:57:44 -0500
commite58dcfbcd127e00bec22141387037bc58ce8bec8 (patch)
tree4adc1f6694654b9fe83fa49c18b38dcef9f02e7d /wm/dwmblocks/dwmblocks-forecast
parenta327f64412c10b04832fa5ba7c34cf494e291c19 (diff)
Diffstat (limited to 'wm/dwmblocks/dwmblocks-forecast')
-rwxr-xr-xwm/dwmblocks/dwmblocks-forecast18
1 files changed, 0 insertions, 18 deletions
diff --git a/wm/dwmblocks/dwmblocks-forecast b/wm/dwmblocks/dwmblocks-forecast
deleted file mode 100755
index 3c2482e..0000000
--- a/wm/dwmblocks/dwmblocks-forecast
+++ /dev/null
@@ -1,18 +0,0 @@
-#!/bin/sh
-
-weatherreport="$HOME/.cache/dwmblocks_forecast"
-getforecast() { curl -sf "wttr.in/" > "$weatherreport" || exit 1 ;}
-
-# Some very particular and terse stream manipulation. We get the maximum
-# precipitation chance and the daily high and low from the downloaded file and
-# display them with coresponding emojis.
-showweather() { printf "%s" "$(sed '16q;d' "$weatherreport" |
- grep -wo "[0-9]*%" | sort -rn | sed "s/^/☔ /g;1q" | tr -d '\n')"
-sed '13q;d' "$weatherreport" | grep -o "m\\([-+]\\)*[0-9]\\+" | sed 's/+//g' | sort -n -t 'm' -k 2n | sed -e 1b -e '$!d' | tr '\n|m' ' ' | awk '{print " 🥶 " $1 "°","🌞 " $2 "°"}' ;}
-
-# The test if our forcecast is updated to the day. If it isn't download a new
-# weather report from wttr.in with the above function.
-[ "$(stat -c %y "$weatherreport" 2>/dev/null | cut -d' ' -f1)" = "$(date '+%Y-%m-%d')" ] ||
- getforecast
-
-showweather