From 2fb35b9ebc6bc4735c1d5a2a6c03a6720d9af0d8 Mon Sep 17 00:00:00 2001 From: 0scar Date: Tue, 14 Mar 2023 15:11:13 +0100 Subject: Add "sunny rainy" icon to weather script --- .local/bin/weather | 2 ++ 1 file changed, 2 insertions(+) (limited to '.local') diff --git a/.local/bin/weather b/.local/bin/weather index 066c148..388254b 100755 --- a/.local/bin/weather +++ b/.local/bin/weather @@ -85,6 +85,8 @@ def symbol(s: int) -> str: return u'\ue33d' elif s == 60: # cloudy return u'\ue332' + elif s == 80: # sunny rainy + return u'\ue308' elif s == 101: # night clear return u'\ue32b' elif s == 102: # night cloudy -- cgit v1.3