diff options
| author | stkhan <personal@slickd.xyz> | 2023-03-31 19:31:05 -0500 |
|---|---|---|
| committer | stkhan <personal@slickd.xyz> | 2023-03-31 19:31:05 -0500 |
| commit | c0092ba1563cd27086f968db59de420299508947 (patch) | |
| tree | 884a818b8fea3fd164df662693656e608f5dc458 /wm/dwmblocks/dwmblocks-forecast | |
| parent | 2de05c39dca4f8a3ca3dd016cfc2076a8a2ba5a9 (diff) | |
init2
Diffstat (limited to 'wm/dwmblocks/dwmblocks-forecast')
| -rwxr-xr-x | wm/dwmblocks/dwmblocks-forecast | 18 |
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 |