From 5f320bc15a804dba9f395446862695c5188320b6 Mon Sep 17 00:00:00 2001 From: ulve Date: Fri, 19 Jun 2026 10:49:29 +0200 Subject: [PATCH] move leading space in weather widget before icon --- config/waybar/weather.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/waybar/weather.sh b/config/waybar/weather.sh index c95ee12..952809b 100755 --- a/config/waybar/weather.sh +++ b/config/waybar/weather.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -result=$(curl -sf --max-time 10 "wttr.in/?format=%c+%t") +result=$(curl -sf --max-time 10 "wttr.in/?format=+%c%t") if [ $? -eq 0 ] && [ -n "$result" ]; then echo "$result" else