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