From f45baf2c903485a35ab26160298574c2855845ab Mon Sep 17 00:00:00 2001 From: Aarron Lee Date: Sun, 19 Jan 2025 16:30:43 -0500 Subject: [PATCH] feat(horipad): udev rules for steam horipad (#354) Co-authored-by: Aarron Lee --- 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"