From 99110dea2a6c50fd3c490ad09af829369ee4b51e Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 8 Oct 2025 08:50:41 -0400 Subject: [PATCH] feat: Adds spinner to weather script when loading weather. --- env/.local/scripts/weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/env/.local/scripts/weather b/env/.local/scripts/weather index 9cb1e57..44484fa 100755 --- a/env/.local/scripts/weather +++ b/env/.local/scripts/weather @@ -46,7 +46,7 @@ while [[ $# -gt 0 ]]; do done get_weather() { - curl "wttr.in/$location" + gum spin --show-output --title="Loading weather for: $location..." curl "wttr.in/$location" } ##################################################