]> git.pld-linux.org Git - packages/systemd.git/blame - udev-steam_controller.rules
sync steam controller rules with latest steam launcher
[packages/systemd.git] / udev-steam_controller.rules
CommitLineData
3185c02c
JP
1# Valve USB devices
2SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
3
4# Steam Controller udev write access
5KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput"
6
7# Valve HID devices over USB hidraw
8KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
9
10# Valve HID devices over bluetooth hidraw
11KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0660", TAG+="uaccess"
12
13# DualShock 4 over USB hidraw
14KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess"
15
16# DualShock 4 wireless adapter over USB hidraw
17KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0660", TAG+="uaccess"
18
19# DualShock 4 Slim over USB hidraw
20KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0660", TAG+="uaccess"
21
22# DualShock 4 over bluetooth hidraw
23KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
24
25# DualShock 4 Slim over bluetooth hidraw
26KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
27
28# Nintendo Switch Pro Controller over USB hidraw
29KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
30
31# Nintendo Switch Pro Controller over bluetooth hidraw
32KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
33
34# PowerA Wired Controller for Nintendo Switch
35KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660", TAG+="uaccess"
36
37# PowerA Wireless Controller for Nintendo Switch we have to use
38# ATTRS{name} since VID/PID are reported as zeros. We use /bin/sh
39# instead of udevadm directly becuase we need to use '*' glob at the
40# end of "hidraw" name since we don't know the index it'd have.
41#
42KERNEL=="input*", ATTRS{name}=="Lic Pro Controller", RUN{program}+="/bin/sh -c \"udevadm test-builtin uaccess /sys/%p/../../hidraw/hidraw*\""
43
44# Nacon PS4 Revolution Pro Controller
45KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
46
47# Razer Raiju PS4 Controller
48KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1000", MODE="0660", TAG+="uaccess"
49
50# Razer Panthera Arcade Stick
51KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0401", MODE="0660", TAG+="uaccess"
52
53# Mad Catz - Street Fighter V Arcade FightPad PRO
54KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8250", MODE="0660", TAG+="uaccess"
55
56# Mad Catz - Street Fighter V Arcade FightStick TE S+
57KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8384", MODE="0660", TAG+="uaccess"
58
59# EMiO Elite Controller for PS4
60KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
61
62# ZeroPlus P4 (hitbox)
63KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0ef6", MODE="0660", TAG+="uaccess"
64
65# HORI RAP4
66KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
67
68# HORIPAD 4 FPS
69KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0055", MODE="0660", TAG+="uaccess"
70
71# HORIPAD 4 FPS Plus
72KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
73
74# HORIPAD for Nintendo Switch
75KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00c1", MODE="0660", TAG+="uaccess"
76
77# Armor Armor 3 Pad PS4
78KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
79
80# STRIKEPAD PS4 Grip Add-on
81KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c5", MODE="0660", TAG+="uaccess"
82
83# NVIDIA Shield Portable (2013 - NVIDIA_Controller_v01.01 - In-Home Streaming only)
84KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7203", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
85
86# NVIDIA Shield Controller (2015 - NVIDIA_Controller_v01.03 over USB hidraw)
87KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7210", MODE="0660", TAG+="uaccess", ENV{ID_INPUT_JOYSTICK}="1", ENV{ID_INPUT_MOUSE}=""
88
89# NVIDIA Shield Controller (2017 - NVIDIA_Controller_v01.04 over bluetooth hidraw)
90KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
91
92# Astro C40
93KERNEL=="hidraw*", ATTRS{idVendor}=="9886", ATTRS{idProduct}=="0025", MODE="0660", TAG+="uaccess"
This page took 0.066295 seconds and 4 git commands to generate.