diff options
| author | Martin Guzman <55927935+brockar@users.noreply.github.com> | 2025-10-28 18:29:58 -0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-10-28 18:29:58 -0300 |
| commit | dad4a040a85a4b2f5a47fb3f623c6818b924ff79 (patch) | |
| tree | 7894d6e167438cdc4705a02c16eeae3f99c10b84 /config/hypr/UserScripts/WeatherWrap.sh | |
| parent | 53fe242ffdddf74bf13e32999027053ee4614b20 (diff) | |
| parent | 0536a3a6f61cf24ac46ff74b49dc27d816a898e4 (diff) | |
Merge pull request #854 from prabinpanta0/development
Weather System Integration Improvements
Diffstat (limited to 'config/hypr/UserScripts/WeatherWrap.sh')
| -rwxr-xr-x | config/hypr/UserScripts/WeatherWrap.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/config/hypr/UserScripts/WeatherWrap.sh b/config/hypr/UserScripts/WeatherWrap.sh new file mode 100755 index 00000000..4c9a16dc --- /dev/null +++ b/config/hypr/UserScripts/WeatherWrap.sh @@ -0,0 +1,33 @@ +#!/bin/bash +# /* ---- 💫 https://github.com/JaKooLit 💫 ---- */ ## +# Weather entrypoint: prefer Python (Open‑Meteo), fallback to legacy Bash (wttr.in) + +SCRIPT_DIR="$(dirname "$0")" +PY_SCRIPT="$SCRIPT_DIR/Weather.py" +BASH_FALLBACK="$SCRIPT_DIR/Weather.sh" + +run_fallback() { + if [ -f "$BASH_FALLBACK" ]; then + # Invoke via bash to avoid requiring +x and ensure consistent shell + bash "$BASH_FALLBACK" "$@" + return $? + else + echo "Weather fallback not found: $BASH_FALLBACK" >&2 + return 127 + fi +} + +if command -v python3 >/dev/null 2>&1; then + python3 "$PY_SCRIPT" "$@" + exit_code=$? + if [ "$exit_code" -eq 0 ]; then + exit 0 + fi + echo "Weather.py failed with code $exit_code — falling back to Weather.sh" >&2 + run_fallback "$@" + exit $? +else + echo "python3 not found in PATH — falling back to Weather.sh" >&2 + run_fallback "$@" + exit $? +fi
\ No newline at end of file |
