From 2641d77390115a13579d0c0908d91bc9dd376298 Mon Sep 17 00:00:00 2001 From: spinach <19keegandeppe@gmail.com> Date: Wed, 1 Feb 2023 18:07:33 -0500 Subject: [PATCH] fixing spacing --- weather | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weather b/weather index 1109ace..322e345 100755 --- a/weather +++ b/weather @@ -59,7 +59,7 @@ print_weather() { temp_icon=$(echo -e '\ufa04') fi # printing - printf '%s %.1f%s%d\ue373 in %s\n' $icon $TEMPERATURE "$temp_icon" "$HUMIDITY" "$CITY" + printf '%s %.1f%s %d\ue373 in %s\n' $icon $TEMPERATURE "$temp_icon" "$HUMIDITY" "$CITY" else # default printing printf '%.1f*%s %d%% RH in %s\n' $TEMPERATURE $UNIT $HUMIDITY "$CITY"