diff --git a/bin/weather b/bin/weather index 135ae01..f3c539e 100755 --- a/bin/weather +++ b/bin/weather @@ -179,8 +179,9 @@ if __name__ == "__main__": "{}°C".format( round(weather[0]["data"]["instant"]["details"]["air_temperature"]) ), - # Forecast: use the symbol for the next 6 hours - format_icon(weather[0]["data"]["next_6_hours"]["summary"]["symbol_code"]), + # Forecast: use the symbol for the next 6 hours and the period after + format_icon(weather[0]["data"]["next_6_hours"]["summary"]["symbol_code"]) + + format_icon(weather[6]["data"]["next_6_hours"]["summary"]["symbol_code"]), # And the temperature range computed for the next 24 hours "{}—{}°C".format(round(mintemp), round(maxtemp)), ]