aboutsummaryrefslogtreecommitdiffstats
path: root/config/hypr/UserScripts/Weather.sh
diff options
context:
space:
mode:
Diffstat (limited to 'config/hypr/UserScripts/Weather.sh')
-rwxr-xr-xconfig/hypr/UserScripts/Weather.sh162
1 files changed, 142 insertions, 20 deletions
diff --git a/config/hypr/UserScripts/Weather.sh b/config/hypr/UserScripts/Weather.sh
index 9bdaff4a..b69662e6 100755
--- a/config/hypr/UserScripts/Weather.sh
+++ b/config/hypr/UserScripts/Weather.sh
@@ -3,16 +3,40 @@
# weather info from wttr. https://github.com/chubin/wttr.in
# Remember to add city
-city=
+city=""
+
+
+# if city is blank, use https://ipapi.co/json to get location from IP
+if [ -z "$city" ]; then
+ city=$(curl -fsS https://ipapi.co/json | grep city | cut -f4 -d'"')
+fi
+
+
+# URL-encode city for safe use in URLs
+encoded_city="$city"
+if command -v python3 >/dev/null 2>&1; then
+ encoded_city=$(python3 -c 'import urllib.parse,sys; print(urllib.parse.quote(sys.argv[1]))' "$city")
+elif command -v jq >/dev/null 2>&1; then
+ encoded_city=$(printf '%s' "$city" | jq -sRr @uri)
+else
+ # Minimal fallback: encode a few common special characters
+ encoded_city=$(printf '%s' "$city" | sed -e 's/ /%20/g' -e 's/&/%26/g' -e 's/?/%3F/g' -e 's/#/%23/g')
+fi
+
+
cachedir="$HOME/.cache/rbn"
-cachefile=${0##*/}-$1
+# Include city and arg in cache key so changing city invalidates old cache
+cache_key="${city}_${1}"
+# Sanitize cache key to avoid problematic characters in filename
+safe_key=$(printf '%s' "$cache_key" | tr -c '[:alnum:]_-' '_')
+cachefile=${0##*/}-$safe_key
-if [ ! -d $cachedir ]; then
- mkdir -p $cachedir
+if [ ! -d "$cachedir" ]; then
+ mkdir -p "$cachedir"
fi
-if [ ! -f $cachedir/$cachefile ]; then
- touch $cachedir/$cachefile
+if [ ! -f "$cachedir/$cachefile" ]; then
+ touch "$cachedir/$cachefile"
fi
# Save current IFS
@@ -20,25 +44,88 @@ SAVEIFS=$IFS
# Change IFS to new line.
IFS=$'\n'
-cacheage=$(($(date +%s) - $(stat -c '%Y' "$cachedir/$cachefile")))
-if [ $cacheage -gt 1740 ] || [ ! -s $cachedir/$cachefile ]; then
- data=($(curl -s https://en.wttr.in/"$city"$1\?0qnT 2>&1))
- echo ${data[0]} | cut -f1 -d, > $cachedir/$cachefile
- echo ${data[1]} | sed -E 's/^.{15}//' >> $cachedir/$cachefile
- echo ${data[2]} | sed -E 's/^.{15}//' >> $cachedir/$cachefile
+file="$cachedir/$cachefile"
+# Portable file mtime retrieval (GNU/BSD):
+# - GNU: stat -c %Y <file>
+# - BSD/macOS: stat -f %m <file>
+mtime=$(stat -c %Y "$file" 2>/dev/null || stat -f %m "$file" 2>/dev/null || echo 0)
+now=$(date +%s)
+cacheage=$(( now - mtime ))
+if [ $cacheage -gt 1740 ] || [ ! -s "$cachedir/$cachefile" ]; then
+ # Prefer structured format for reliable parsing (3 lines: location, condition, temperature)
+ mapfile -t sdata < <(curl -fsS "https://wttr.in/${encoded_city}?format=%25l%0A%25C%0A%25t&lang=en" 2>/dev/null || true)
+ if [ ${#sdata[@]} -ge 3 ]; then
+ printf "%s\n" "${sdata[0]}" > "$cachedir/$cachefile"
+ printf "%s\n" "${sdata[1]}" >> "$cachedir/$cachefile"
+ printf "%s\n" "${sdata[2]}" >> "$cachedir/$cachefile"
+ else
+ # Try fetching each field separately if combined format is flaky
+ loc=$(curl -fsS "https://wttr.in/${encoded_city}?format=%25l&lang=en" 2>/dev/null || true)
+ cond_only=$(curl -fsS "https://wttr.in/${encoded_city}?format=%25C&lang=en" 2>/dev/null || true)
+ temp_only=$(curl -fsS "https://wttr.in/${encoded_city}?format=%25t" 2>/dev/null || true)
+ if [ -n "$loc" ] && [ -n "$cond_only" ] && [ -n "$temp_only" ]; then
+ printf "%s\n" "$loc" > "$cachedir/$cachefile"
+ printf "%s\n" "$cond_only" >> "$cachedir/$cachefile"
+ printf "%s\n" "$temp_only" >> "$cachedir/$cachefile"
+ else
+ # Fallback: try ASCII output and extract best-effort fields
+ url="https://en.wttr.in/${encoded_city}?1"
+ mapfile -t data < <(curl -fsS "$url" 2>/dev/null || true)
+ if [ ${#data[@]} -ge 3 ] && ! echo "${data[0]}" | grep -qi 'not found\|unknown location'; then
+ loc=$(echo "${data[0]}" | sed -E 's/^.*: *//')
+ # Attempt to pull condition and temperature hints from nearby lines
+ cond=$(echo "${data[2]}" | sed -E 's/^.{0,15}//; s/^\s+//')
+ temp=$(printf "%s\n" "${data[@]}" | grep -Eo '\+?-?[0-9]+(\([^)]+\))? ?°?[CF]' | head -n1)
+ # Only write if we have at least location and something else meaningful
+ if [ -n "$loc" ] && { [ -n "$cond" ] || [ -n "$temp" ]; }; then
+ printf "%s\n" "$loc" > "$cachedir/$cachefile"
+ printf "%s\n" "${cond:-Unknown}" >> "$cachedir/$cachefile"
+ printf "%s\n" "${temp:-N/A}" >> "$cachedir/$cachefile"
+ fi
+ fi
+ fi
+ fi
fi
-weather=($(cat $cachedir/$cachefile))
+# Read cache robustly (line-wise)
+mapfile -t weather < "$cachedir/$cachefile"
+
+# If cache is still empty or invalid, emit a single error JSON and exit to avoid double-prints
+if [ ${#weather[@]} -lt 3 ] || ! echo "${weather[2]}" | grep -qE '[-+0-9].*°'; then
+ # Last-chance: try live structured fetch and populate cache and runtime weather
+ mapfile -t sdata < <(curl -fsS "https://wttr.in/${encoded_city}?format=%25l%0A%25C%0A%25t&lang=en" 2>/dev/null || true)
+ if [ ${#sdata[@]} -ge 3 ]; then
+ weather=("${sdata[@]}")
+ printf "%s\n" "${sdata[0]}" > "$cachedir/$cachefile"
+ printf "%s\n" "${sdata[1]}" >> "$cachedir/$cachefile"
+ printf "%s\n" "${sdata[2]}" >> "$cachedir/$cachefile"
+ else
+ loc=$(curl -fsS "https://wttr.in/${encoded_city}?format=%25l&lang=en" 2>/dev/null || true)
+ cond_only=$(curl -fsS "https://wttr.in/${encoded_city}?format=%25C&lang=en" 2>/dev/null || true)
+ temp_only=$(curl -fsS "https://wttr.in/${encoded_city}?format=%25t" 2>/dev/null || true)
+ if [ -n "$loc" ] && [ -n "$cond_only" ] && [ -n "$temp_only" ]; then
+ weather=("$loc" "$cond_only" "$temp_only")
+ printf "%s\n" "$loc" > "$cachedir/$cachefile"
+ printf "%s\n" "$cond_only" >> "$cachedir/$cachefile"
+ printf "%s\n" "$temp_only" >> "$cachedir/$cachefile"
+ else
+ echo -e "{\"text\":\"\uf06a\", \"alt\":\"\", \"tooltip\":\": \"}"
+ exit 1
+ fi
+ fi
+fi
# Restore IFSClear
IFS=$SAVEIFS
-temperature=$(echo ${weather[2]} | sed -E 's/([[:digit:]]+)\.\./\1 to /g')
+temperature=$(echo "${weather[2]}" | sed -E 's/([[:digit:]]+)\.\./\1 to /g')
#echo ${weather[1]##*,}
# https://fontawesome.com/icons?s=solid&c=weather
-case $(echo ${weather[1]##*,} | tr '[:upper:]' '[:lower:]') in
+# Normalize condition string for matching
+cond_key=$(echo "${weather[1]##*,}" | tr '[:upper:]' '[:lower:]' | sed -E 's/^\s+//; s/\s+$//')
+case "$cond_key" in
"clear" | "sunny")
condition=""
;;
@@ -54,7 +141,7 @@ case $(echo ${weather[1]##*,} | tr '[:upper:]' '[:lower:]') in
"fog" | "freezing fog")
condition=""
;;
-"patchy rain possible" | "patchy light drizzle" | "light drizzle" | "patchy light rain" | "light rain" | "light rain shower" | "mist" | "rain")
+"patchy rain possible" | "patchy light drizzle" | "light drizzle" | "patchy light rain" | "light rain" | "light rain shower" | "mist" | "rain" | "patchy rain nearby")
condition="󰼳"
;;
"moderate rain at times" | "moderate rain" | "heavy rain at times" | "heavy rain" | "moderate or heavy rain shower" | "torrential rain shower" | "rain shower")
@@ -74,14 +161,49 @@ case $(echo ${weather[1]##*,} | tr '[:upper:]' '[:lower:]') in
;;
*)
condition=""
- echo -e "{\"text\":\""$condition"\", \"alt\":\""${weather[0]}"\", \"tooltip\":\""${weather[0]}: $temperature ${weather[1]}"\"}"
;;
esac
+# If still unknown, try substring heuristics to pick a reasonable icon
+if [ "$condition" = "" ]; then
+ if echo "$cond_key" | grep -q "rain\|drizzle\|shower"; then
+ condition="󰼳"
+ elif echo "$cond_key" | grep -q "heavy rain\|torrential"; then
+ condition=""
+ elif echo "$cond_key" | grep -q "snow"; then
+ condition="󰙿"
+ elif echo "$cond_key" | grep -q "sleet\|freezing\|ice"; then
+ condition="󰼴"
+ elif echo "$cond_key" | grep -q "thunder"; then
+ condition=""
+ elif echo "$cond_key" | grep -q "overcast"; then
+ condition=""
+ elif echo "$cond_key" | grep -q "cloud"; then
+ condition=""
+ elif echo "$cond_key" | grep -q "sunny\|clear"; then
+ condition=""
+ fi
+fi
+
#echo $temp $condition
-echo -e "{\"text\":\""$temperature $condition"\", \"alt\":\""${weather[0]}"\", \"tooltip\":\""${weather[0]}: $temperature ${weather[1]}"\"}"
+# Ensure temperature has a value; if empty, keep whatever is in weather[2] or N/A
+if [ -z "$temperature" ]; then
+ temperature="${weather[2]:-N/A}"
+fi
+
+cond_disp=$(echo "${weather[1]}" | sed -E 's/^\s+//; s/\s+$//')
+
+# Escape strings for safe JSON embedding (escape backslashes and double quotes)
+json_escape() {
+ printf '%s' "$1" | sed -e 's/\\/\\\\/g' -e 's/\"/\\\"/g'
+}
+
+text_json=$(json_escape "$temperature $condition")
+alt_json=$(json_escape "${weather[0]}")
+tooltip_json=$(json_escape "${weather[0]}: $temperature $cond_disp")
-cached_weather=" $temperature \n$condition ${weather[1]}"
+printf '{"text":"%s", "alt":"%s", "tooltip":"%s"}\n' "$text_json" "$alt_json" "$tooltip_json"
-echo -e $cached_weather > "$HOME/.cache/.weather_cache" \ No newline at end of file
+# Write a two-line cache with an actual newline between lines
+printf ' %s \n%s %s\n' "$temperature" "$condition" "${weather[1]}" > "$HOME/.cache/.weather_cache" \ No newline at end of file
send patches to the email below
yukais@pinapelz.com
include the subject [PATCH repo_name]
pinapelz.com
homepage