From db69a0c6b0581ce2a87e1c35d70620a8b9cdba3c Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Thu, 26 Oct 2023 11:05:42 +0300 Subject: [PATCH] fix --- docs/mouse_jiggler.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/docs/mouse_jiggler.md b/docs/mouse_jiggler.md index 5755d73d..8b7481aa 100644 --- a/docs/mouse_jiggler.md +++ b/docs/mouse_jiggler.md @@ -15,14 +15,15 @@ To enable the Jiggler, it is enough to activate the switch in the Web UI: ## Description of the algorithm If the Jiggler is enabled, then PiKVM counts down the time that has elapsed since the last user input: -that is, any action with the keyboard or mouse. If there have been no actions for more than 60 seconds, +that is, any action with the keyboard or mouse. If there have been no actions for more than **60 seconds**, the Jiggler performs a mouse movement and waits another 60 seconds until the next iteration. The Jiggler supports both [mouse modes](mouse.md): absolute and relative. -Movement patterns are deterministic: -* Absolute: `(-100, -100), wait, (100, 100), wait...` (the coordinates are converted depending on the screen resolution). -* Relative: `(-10, -10), wait, (10, 10), wait...`. +**Movement patterns are deterministic:** + +* **Absolute:** `(-100, -100), wait, (100, 100), wait...`
*The coordinates are converted depending on the screen resolution.* +* **Relative:** `(-10, -10), wait, (10, 10), wait...`. The Jiggler works on the PiKVM side, even if the web interface was closed.