1
0
Fork 0
dotfiles/.local/bin/statusbar/sb-forecast

36 lines
1.3 KiB
Plaintext
Raw Normal View History

2022-07-04 21:36:33 +02:00
#!/bin/sh
2022-08-22 20:33:37 +02:00
2023-04-03 12:49:26 +02:00
# NOTE: This script takes its dwmblocks update signal as an argument so that it can refresh itself (defaults to 5)
2022-08-22 20:33:37 +02:00
# Options can be found at https://wttr.in/:help
2023-02-09 15:29:14 +01:00
weatherfile="$XDG_CACHE_HOME/weatherreport"
emojifile="$XDG_CACHE_HOME/weatheremoji"
2023-04-03 12:49:26 +02:00
url="wttr.in/$LOCATION"
weatheropts="?FA"
emojiopts="?FA&format=%c"
2023-02-09 15:29:14 +01:00
getforecast() {
2023-04-21 15:02:38 +02:00
curl -sf --retry 5 "$url$weatheropts" >"$weatherfile" || exit 1
curl -sf "$url$emojiopts" --retry 5 | sed 's/☀️//;s/☁️//;s/⛅️//;s/⛈//;s/✨//;s/❄️//;s/🌦//;s/🌧//;s/🌨//;s/🌩//;s/🌫//;' | cut -d ' ' -f 1 >"$emojifile" || exit 1
2022-07-04 21:36:33 +02:00
}
2023-04-03 12:49:26 +02:00
fresh() {
[ -s "$weatherfile" ] && [ "$(stat -c %y "$weatherfile" 2>/dev/null | cut -d' ' -f1)" = "$(date '+%Y-%m-%d')" ]
2022-08-22 20:33:37 +02:00
}
2023-04-03 12:49:26 +02:00
readfile() {
weather="$(cat "$weatherfile")"
precipitation="$(echo "$weather" | sed '16q;d' | grep -wo "[0-9]*%" | sort -rn | head -1q)"
highlow="$(echo "$weather" | sed '13q;d' | grep -o "m\\([-+]\\)*[0-9]\\+" | sed 's/[+m]//g' | sort -g | sed -e 1b -e '$!d')"
emoji="$(cat "$emojifile")"
}
output() {
readfile
2023-04-12 11:37:10 +02:00
printf "\e[12m%s\e[10m %s \e[34;11m\e[0m %s° \e[31;11m\e[0m %s°\n" "$emoji" "$precipitation" $highlow
2023-04-03 12:49:26 +02:00
}
if fresh; then
output
else
getforecast && pkill -RTMIN+${1:-5} dwmblocks &
printf " Getting Weather\n"
fi