diff options
| author | 0scar <qgt268@alumni.ku.dk> | 2023-03-14 14:11:13 +0000 |
|---|---|---|
| committer | 0scar <qgt268@alumni.ku.dk> | 2023-03-14 14:11:13 +0000 |
| commit | 2fb35b9ebc6bc4735c1d5a2a6c03a6720d9af0d8 (patch) | |
| tree | 5e4003f11800140b2f22beadbb0a47a98d1c071b | |
| parent | 04e3e300bd0c6c01ba5e8a3a3f0d40ea29c95945 (diff) | |
Add "sunny rainy" icon to weather script
| -rwxr-xr-x | .local/bin/weather | 2 |
1 files changed, 2 insertions, 0 deletions
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 |
