diff --git a/weather/widget.go b/weather/widget.go index e6410c9d..2fc0b64d 100644 --- a/weather/widget.go +++ b/weather/widget.go @@ -77,6 +77,8 @@ func icon(data *owm.CurrentWeatherData) string { var icon string switch data.Weather[0].Description { + case "broken clouds": + icon = "☁️" case "clear": icon = "☀️" case "cloudy": diff --git a/wtf.go b/wtf.go index 0a29939c..439b70b3 100644 --- a/wtf.go +++ b/wtf.go @@ -38,6 +38,8 @@ func main() { go func() { for { time.Sleep(900 * time.Second) // 15 minutes + bamboo.Refresh() + cal.Refresh() stat.Refresh() weather.Refresh() app.Draw()