diff options
author | Kyle K <kylek389@gmail.com> | 2017-07-09 21:58:01 -0500 |
---|---|---|
committer | Kyle K <kylek389@gmail.com> | 2017-07-09 21:58:13 -0500 |
commit | a8570e050044e8307f745acf9135251080ba540c (patch) | |
tree | 1c20b81bc9441835fdb18478021acdb8b50d4b4c /udev | |
parent | f73d5730c5a1ade6653a5a8eded03dde1cdd6fdc (diff) | |
download | configs-a8570e050044e8307f745acf9135251080ba540c.tar.gz configs-a8570e050044e8307f745acf9135251080ba540c.tar.bz2 configs-a8570e050044e8307f745acf9135251080ba540c.zip |
steam controller udev
Diffstat (limited to 'udev')
-rw-r--r-- | udev/99-steam-controller-perms.rules | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/udev/99-steam-controller-perms.rules b/udev/99-steam-controller-perms.rules new file mode 100644 index 0000000..1ab9993 --- /dev/null +++ b/udev/99-steam-controller-perms.rules @@ -0,0 +1,26 @@ +# This rule is needed for basic functionality of the controller in Steam and keyboard/mouse emulation +SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666" + +# This rule is necessary for gamepad emulation; make sure you replace 'pgriffais' with a group that the user that runs Steam belongs to +KERNEL=="uinput", MODE="0660", GROUP="pgriffais", OPTIONS+="static_node=uinput" + +# Valve HID devices over USB hidraw +KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0666" + +# Valve HID devices over bluetooth hidraw +KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0666" + +# DualShock 4 over USB hidraw +KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0666" + +# DualShock 4 wireless adapter over USB hidraw +KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0666" + +# DualShock 4 Slim over USB hidraw +KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0666" + +# DualShock 4 over bluetooth hidraw +KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0666" + +# DualShock 4 Slim over bluetooth hidraw +KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0666" |