From 247de6f02a7bbb7f34d96f463c805165f346f706 Mon Sep 17 00:00:00 2001 From: jawhng Date: Mon, 8 Jun 2026 00:54:42 +0300 Subject: [PATCH] Fix default hidraw device after kernel update hidraw2 (ENE Technology ENEK5130 keyboard controller) is the correct RGB device. hidraw4 is a Pixart touchpad that silently accepts the ioctl without effect. Co-Authored-By: Claude Sonnet 4.6 --- daemon_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon_client.py b/daemon_client.py index cb7089d..59429a5 100644 --- a/daemon_client.py +++ b/daemon_client.py @@ -24,7 +24,7 @@ DEVICES = ["keyboard", "lid", "button"] @dataclass class RGBState: device: str = "keyboard" - hidraw: str = "/dev/hidraw4" + hidraw: str = "/dev/hidraw2" effect: str = "static" brightness: int = 100 speed: int = 0