From 71f9b2ddf1cdd7fdafe2944c4c16de4145241240 Mon Sep 17 00:00:00 2001 From: Chris Cummer Date: Sun, 29 Apr 2018 07:22:32 -0700 Subject: [PATCH] Thunderstorm added to weather icons --- weather/widget.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/weather/widget.go b/weather/widget.go index 52cf7107..c0608308 100644 --- a/weather/widget.go +++ b/weather/widget.go @@ -186,6 +186,8 @@ func (widget *Widget) icon(data *owm.CurrentWeatherData) string { icon = "❄️" case "sunny": icon = "☀️" + case "thunderstorm": + icon = "⛈" default: icon = "💥" }