diff options
| author | 2026-05-13 13:43:39 +0100 | |
|---|---|---|
| committer | 2026-05-13 13:43:39 +0100 | |
| commit | fef8129ccaf0fc439ff1d1a117b26654f58efc78 (patch) | |
| tree | 15dbc33e1431263c6d6b094b16295717cb4c460b | |
| parent | 2d70af4ae06e1a528cf3b49e0249ea27fe9c8df2 (diff) | |
| download | dotfiles-fef8129ccaf0fc439ff1d1a117b26654f58efc78.tar.gz dotfiles-fef8129ccaf0fc439ff1d1a117b26654f58efc78.tar.bz2 dotfiles-fef8129ccaf0fc439ff1d1a117b26654f58efc78.zip | |
fix(udev): qmk does not actually grant hidraw uaccess; use zsa-udev
Inspecting upstream qmk_udev's 50-qmk.rules: the access-granting
line (`SUBSYSTEM=="hidraw" ... ENV{ID_QMK}="1"` paired with a
MODE/TAG) is *commented out*. The package only sets ID_QMK=1 via a
helper to mark devices for ModemManager to ignore during flashing. It
does not in fact tag hidraw nodes with uaccess for runtime apps like
VIA/usevia.
zsa-udev (AUR) ships ZSA's upstream 50-oryx.rules and 50-wally.rules
which do exactly the right TAG+=uaccess on VID 3297. Same package
zsa-keymapp-bin already depends on, so this is the canonical path.
| -rw-r--r-- | meta/base.txt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/meta/base.txt b/meta/base.txt index 0629cf2..3c94a18 100644 --- a/meta/base.txt +++ b/meta/base.txt @@ -180,10 +180,11 @@ inhibridge # secrets under ~/.password-store/secret-service/. pass-secret-service-bin -# Ships /usr/lib/udev/rules.d/50-qmk.rules, which (among many vendors) -# tags ZSA's VID 3297 hidraw nodes with uaccess. Required for VIA / -# usevia.app (WebHID) to talk to the ErgoDox EZ / Moonlander / Voyager. -qmk +# Ships ZSA's upstream udev rules (50-oryx.rules, 50-wally.rules) to +# /usr/lib/udev/rules.d/ so VID 3297 hidraw nodes get TAG+=uaccess. +# Required for VIA / usevia.app (WebHID) and Wally flashing of the +# ErgoDox EZ / Moonlander / Voyager. +zsa-udev # Clipboard wl-clipboard |
