diff options
| author | Ja.KooLit <85185940+JaKooLit@users.noreply.github.com> | 2024-08-08 14:12:23 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-08 14:12:23 +0000 |
| commit | d8a3463934bdc6c89a5bbfdce8b2f2325715c8c9 (patch) | |
| tree | f8b90bb192c86a619c70b5d6359b4387b1b64bb2 /config/hypr/UserScripts/Weather.py | |
| parent | 41c4923fe79b1462a54881705a580b730405a370 (diff) | |
| parent | 66cfe8e38194b6c8fcaf1d74aa31b264c79751bc (diff) | |
Merge pull request #395 from JaKooLit/development
Development to Main in preparation for Hyprland v0.42.0 recently released
Diffstat (limited to 'config/hypr/UserScripts/Weather.py')
| -rwxr-xr-x | config/hypr/UserScripts/Weather.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index 1d2ea30b..c0a40fd7 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -63,12 +63,12 @@ temp_feel_text = f"Feels like {temp_feel}c" # min-max temperature temp_min = ( html_data("div[data-testid='wxData'] > span[data-testid='TemperatureValue']") - .eq(0) + .eq(1) .text() ) temp_max = ( html_data("div[data-testid='wxData'] > span[data-testid='TemperatureValue']") - .eq(1) + .eq(0) .text() ) temp_min_max = f"ī {temp_min}\t\tī {temp_max}" |
