From 212ff3c5a35513edd822663476f4ce0848950f3c Mon Sep 17 00:00:00 2001 From: Shaun Reed Date: Sat, 19 Oct 2019 14:57:14 -0400 Subject: [PATCH] Fix spacing, symbols for weather status display --- bin/.local/bin/i3scripts/weathermap | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/.local/bin/i3scripts/weathermap b/bin/.local/bin/i3scripts/weathermap index d4cb012..2ff240d 100755 --- a/bin/.local/bin/i3scripts/weathermap +++ b/bin/.local/bin/i3scripts/weathermap @@ -76,7 +76,7 @@ if [ -n "$current" ] && [ -n "$forecast" ]; then elif [ "$forecast_temp" -gt "$current_temp" ]; then trend="" # Arrow, up-right slant else - trend="壟" # Arrow, left-to-right + trend="" # Arrow, left-to-right fi @@ -92,5 +92,5 @@ if [ -n "$current" ] && [ -n "$forecast" ]; then daytime=" $(get_duration "$((sun_rise-now))")" # Unknown fi - echo "$(get_icon "$current_icon") $current_temp$SYMBOL $trend $(get_icon "$forecast_icon") $forecast_temp$SYMBOL $daytime" + echo "$(get_icon "$current_icon") $current_temp$SYMBOL $trend $(get_icon "$forecast_icon") $forecast_temp$SYMBOL $daytime" fi