From b838c814bac61bb976fb001449e7e5bc36342649 Mon Sep 17 00:00:00 2001 From: Ruslan Date: Mon, 4 May 2026 06:20:55 +0000 Subject: [PATCH] fix: change anti-idle interval from 30s to 3min --- rdp-proxy/manager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdp-proxy/manager.py b/rdp-proxy/manager.py index 54f213b..cc0daed 100644 --- a/rdp-proxy/manager.py +++ b/rdp-proxy/manager.py @@ -75,7 +75,7 @@ def _anti_idle_loop(): env = {**os.environ, "DISPLAY": DISPLAY} toggle = False while True: - time.sleep(30) + time.sleep(180) with _lock: active = _should_be_connected and _proc is not None and _proc.poll() is None if not active: