Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| e39ca5dc13 | |||
| ebc0f6a9e3 | |||
| 814e14b944 | |||
| 3f9f151f8b | |||
| a9907d7998 | |||
| 442b412ae2 | |||
| 269aaee99b | |||
| 8536d8d199 | |||
| f6166e225c | |||
| 2b22e5b4be | |||
| 46bd9ae695 | |||
| 9414e34ab6 | |||
| c3ef87a1c0 | |||
| 7957f2ba49 | |||
| 47261809a5 | |||
| ce411b6191 | |||
| af9c25b320 | |||
| d9f537da46 | |||
| 57fe06f818 | |||
| 04ec95d1a0 | |||
| 00aa8483cd |
@@ -25,12 +25,37 @@ KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess"
|
|||||||
# DualShock 4 Slim over bluetooth hidraw
|
# DualShock 4 Slim over bluetooth hidraw
|
||||||
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# PS5 DualSense controller over USB hidraw
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ce6", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# PS5 DualSense controller over bluetooth hidraw
|
||||||
|
KERNEL=="hidraw*", KERNELS=="*054C:0CE6*", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
# Nintendo Switch Pro Controller over USB hidraw
|
# Nintendo Switch Pro Controller over USB hidraw
|
||||||
KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
# Nintendo Switch Pro Controller over bluetooth hidraw
|
# Nintendo Switch Pro Controller over bluetooth hidraw
|
||||||
KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", KERNELS=="*057E:2009*", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# Faceoff Wired Pro Controller for Nintendo Switch
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0180", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# PDP Wired Fight Pad Pro for Nintendo Switch
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0185", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# PowerA Wired Controller for Nintendo Switch
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# PowerA Wireless Controller for Nintendo Switch we have to use
|
||||||
|
# ATTRS{name} since VID/PID are reported as zeros. We use /bin/sh
|
||||||
|
# instead of udevadm directly becuase we need to use '*' glob at the
|
||||||
|
# end of "hidraw" name since we don't know the index it'd have.
|
||||||
|
#
|
||||||
|
KERNEL=="input*", ATTRS{name}=="Lic Pro Controller", RUN{program}+="/bin/sh -c 'udevadm test-builtin uaccess /sys/%p/../../hidraw/hidraw*'"
|
||||||
|
|
||||||
|
# Afterglow Deluxe+ Wired Controller for Nintendo Switch
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0e6f", ATTRS{idProduct}=="0188", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
# Nacon PS4 Revolution Pro Controller
|
# Nacon PS4 Revolution Pro Controller
|
||||||
KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
@@ -49,6 +74,9 @@ KERNEL=="hidraw*", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="8384", MODE="0660
|
|||||||
# EMiO Elite Controller for PS4
|
# EMiO Elite Controller for PS4
|
||||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="1cf6", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# ZeroPlus P4 (hitbox)
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0ef6", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
# HORI RAP4
|
# HORI RAP4
|
||||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="008a", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
@@ -58,6 +86,9 @@ KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0055", MODE="0660
|
|||||||
# HORIPAD 4 FPS Plus
|
# HORIPAD 4 FPS Plus
|
||||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="0066", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# HORIPAD for Nintendo Switch
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0f0d", ATTRS{idProduct}=="00c1", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
# Armor Armor 3 Pad PS4
|
# Armor Armor 3 Pad PS4
|
||||||
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", ATTRS{idVendor}=="0c12", ATTRS{idProduct}=="0e10", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
@@ -72,3 +103,6 @@ KERNEL=="hidraw*", ATTRS{idVendor}=="0955", ATTRS{idProduct}=="7210", MODE="0660
|
|||||||
|
|
||||||
# NVIDIA Shield Controller (2017 - NVIDIA_Controller_v01.04 over bluetooth hidraw)
|
# NVIDIA Shield Controller (2017 - NVIDIA_Controller_v01.04 over bluetooth hidraw)
|
||||||
KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
|
KERNEL=="hidraw*", KERNELS=="*0955:7214*", MODE="0660", TAG+="uaccess"
|
||||||
|
|
||||||
|
# Astro C40
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="9886", ATTRS{idProduct}=="0025", MODE="0660", TAG+="uaccess"
|
||||||
|
|||||||
Reference in New Issue
Block a user