fix: revert anti-idle interval to 30s (3min caused Red OS to lock)

This commit is contained in:
2026-05-04 08:09:47 +00:00
parent dddeb26946
commit 204bb02011
+1 -1
View File
@@ -90,7 +90,7 @@ def _anti_idle_loop():
env = {**os.environ, "DISPLAY": DISPLAY}
toggle = False
while True:
time.sleep(180)
time.sleep(30)
with _lock:
active = _should_be_connected and _proc is not None and _proc.poll() is None
if not active: