From 885230e466b64ff12ff79cc0b62835ba5048eaa4 Mon Sep 17 00:00:00 2001 From: Maxim Devaev Date: Thu, 8 Jun 2023 03:52:08 +0300 Subject: [PATCH] mouse doc fix --- docs/mouse.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/mouse.md b/docs/mouse.md index 991ee7cb..f0b2e523 100644 --- a/docs/mouse.md +++ b/docs/mouse.md @@ -88,13 +88,15 @@ Mode switching for [Arduino HID](arduino_hid.md) can be performed on-the-fly sta ## Fixing the absolute mouse on Windows 98 -Due to an ancient buggy driver, the absolute mouse on Windows 98 moves only within the upper-left quarter of the screen. To fix this, you need to activate some magic workaround in `/etc/kvmd/override.yaml`: +Due to an ancient buggy driver, the absolute mouse on Windows 98 moves only within the upper-left quarter of the screen. To fix this, you need to activate some magic workaround. Due to the specifics of the implementation, you will have to turn on the relative mouse too. Write it in `/etc/kvmd/override.yaml`: ```yaml kvmd: hid: mouse: absolute_win98_fix: true + mouse_alt: + device: /dev/kvmd-hid-mouse-alt ``` -... and run `systemctl restart kvmd`. +... and run `systemctl restart kvmd`. After that, you will get 3 new buttons with mouse modes in the **System** menu in Web UI. Switch it to **Abs-Win98**.