]> git.pld-linux.org Git - packages/systemd.git/blob - udev-steam_controller.rules
sync steam controller rules with latest steam launcher
[packages/systemd.git] / udev-steam_controller.rules
1 # Valve USB devices
2 SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
3
4 # Steam Controller udev write access
5 KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess", OPTIONS+="static_node=uinput"
6
7 # Valve HID devices over USB hidraw
8 KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0660", TAG+="uaccess"
9
10 # Valve HID devices over bluetooth hidraw
11 KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0660", TAG+="uaccess"
12
13 # DualShock 4 over USB hidraw
14 KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess"
15
16 # DualShock 4 wireless adapter over USB hidraw
17 KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0660", TAG+="uaccess"
18
19 # DualShock 4 Slim over USB hidraw
20 KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0660", TAG+="uaccess"
21
22 # DualShock 4 over bluetooth hidraw
23 KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
24
25 # DualShock 4 Slim over bluetooth hidraw
26 KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
27
28 # Nintendo Switch Pro Controller over USB hidraw
29 KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
30
31 # Nintendo Switch Pro Controller over bluetooth hidraw
32 KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
33
34 # PowerA Wired Controller for Nintendo Switch
35 KERNEL=="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 #
42 KERNEL=="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
45 KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
46
47 # Razer Raiju PS4 Controller
48 KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1000", MODE="0660", TAG+="uaccess"
49
50 # Razer Panthera Arcade Stick
51 KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0401", MODE="0660", TAG+="uaccess"
52
53 # Mad Catz - Street Fighter V Arcade FightPad PRO
54 KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8250", MODE="0660", TAG+="uaccess"
55
56 # Mad Catz - Street Fighter V Arcade FightStick TE S+
57 KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8384", MODE="0660", TAG+="uaccess"
58
59 # EMiO Elite Controller for PS4
60 KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
61
62 # ZeroPlus P4 (hitbox)
63 KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0ef6", MODE="0660", TAG+="uaccess"
64
65 # HORI RAP4
66 KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
67
68 # HORIPAD 4 FPS
69 KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0055", MODE="0660", TAG+="uaccess"
70
71 # HORIPAD 4 FPS Plus
72 KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
73
74 # HORIPAD for Nintendo Switch
75 KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00c1", MODE="0660", TAG+="uaccess"
76
77 # Armor Armor 3 Pad PS4
78 KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
79
80 # STRIKEPAD PS4 Grip Add-on
81 KERNEL=="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)
84 KERNEL=="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)
87 KERNEL=="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)
90 KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
91
92 # Astro C40
93 KERNEL=="hidraw*", ATTRS{idVendor}=="9886", ATTRS{idProduct}=="0025", MODE="0660", TAG+="uaccess"
This page took 0.039821 seconds and 3 git commands to generate.