From ea67f06735c4ebf5e02d3fc8a83a53311e1ad97a Mon Sep 17 00:00:00 2001 From: Donald Williams <129223418+dwilliam62@users.noreply.github.com> Date: Sun, 21 Sep 2025 03:47:46 -0400 Subject: Update Weather.py - index out of range Changed index to resolve "index out of range error" Fix provided by mio-dokuhaki tested and verified --- config/hypr/UserScripts/Weather.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/hypr/UserScripts/Weather.py b/config/hypr/UserScripts/Weather.py index efa96813..a8b70417 100755 --- a/config/hypr/UserScripts/Weather.py +++ b/config/hypr/UserScripts/Weather.py @@ -59,7 +59,8 @@ status = html_data("div[data-testid='wxPhrase']").text() status = f"{status[:16]}.." if len(status) > 17 else status # status code -status_code = html_data("#regionHeader").attr("class").split(" ")[2].split("-")[2] +# Fix provided by mio-dokuhaki +status_code = html_data("#regionHeader").attr("class").split(" ")[1].split("-")[0] # status icon icon = ( -- cgit v1.2.3 From ce072686ca7e143032b0cb1b29ee7cea34a87541 Mon Sep 17 00:00:00 2001 From: Donald Williams <129223418+dwilliam62@users.noreply.github.com> Date: Mon, 22 Sep 2025 09:25:07 -0400 Subject: UserSettings.conf - Allow session lock restore Yuni asked me to add this to prevent Lockscreen crashes when resuming from suspend/hibernate --- config/hypr/UserConfigs/UserSettings.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/config/hypr/UserConfigs/UserSettings.conf b/config/hypr/UserConfigs/UserSettings.conf index f31bb7e1..325d24f7 100644 --- a/config/hypr/UserConfigs/UserSettings.conf +++ b/config/hypr/UserConfigs/UserSettings.conf @@ -87,6 +87,7 @@ misc { middle_click_paste = false enable_anr_dialog = true # Application not Responding (ANR) anr_missed_pings = 15 # ANR Threshold default 1 is too low + allow_session_lock_restore = true # Prevent lockscreen crash when resume from suspend } #opengl { -- cgit v1.2.3