From aa598ee7d7542124174e8ba72915f63ca5536f76 Mon Sep 17 00:00:00 2001 From: Aarron Lee Date: Sat, 18 Jan 2025 14:02:53 -0500 Subject: [PATCH] feat(horipad): udev rules for steam horipad --- files/etc/udev/rules.d/50-steam-horipad-controller.rules | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 files/etc/udev/rules.d/50-steam-horipad-controller.rules diff --git a/files/etc/udev/rules.d/50-steam-horipad-controller.rules b/files/etc/udev/rules.d/50-steam-horipad-controller.rules new file mode 100644 index 00000000..9894b98e --- /dev/null +++ b/files/etc/udev/rules.d/50-steam-horipad-controller.rules @@ -0,0 +1,9 @@ +# udev rules from GloriousEggroll + +# Wireless HORIPAD STEAM; Bluetooth +KERNEL=="hidraw*", KERNELS=="*0F0D:0196*", MODE="0660", TAG+="uaccess" +KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0196", MODE="0660", TAG+="uaccess" + +# Wired HORIPAD STEAM; USB +KERNEL=="hidraw*", KERNELS=="*0F0D:01AB*", MODE="0660", TAG+="uaccess" +KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="01ab", MODE="0660", TAG+="uaccess"