fix: anti-idle click at y=80 (2cm from top)

This commit is contained in:
2026-05-04 10:34:08 +00:00
parent 4dec5a09ce
commit d7c3b35502
+1 -1
View File
@@ -102,7 +102,7 @@ def _anti_idle_loop():
)
win_id = r.stdout.decode().strip().splitlines()[0] if r.stdout.strip() else ""
if win_id:
x, y = (5, 5) if toggle else (6, 6)
x, y = (5, 80) if toggle else (6, 81)
subprocess.run(
["xdotool", "mousemove", "--window", win_id, str(x), str(y)],
env=env, capture_output=True, timeout=5,