6 Commits

Author SHA1 Message Date
kisak-valve
2b0bddafc1 Add Razer Raiju 2 Tournament Edition (USB)
From https://github.com/ValveSoftware/steam-for-linux/issues/4985#issuecomment-805018957.
2021-03-23 12:05:19 -04:00
Timothee "TTimo" Besset
ebc0f6a9e3 Merge pull request #17 from ghost/master
Add support for Afterglow Deluxe+ wired controller
2020-12-28 14:19:09 +00:00
Mathieu Ricard
814e14b944 Add support for Afterglow Deluxe+ wired controller 2020-12-25 14:18:34 -05:00
Timothee "TTimo" Besset
3f9f151f8b Merge pull request #14 from FranklinsHand/master
Add support for Faceoff Wired Pro Controller
2020-12-02 08:41:03 -08:00
FranklinsHand
a9907d7998 Add support for Faceoff Wired Pro Controller
Add support for Faceoff Wired Pro Controller for Nintendo Switch.
It is an off-brand Nintendo switch pro controller, and Steam does not currently detect it.
2020-12-01 19:15:26 -05:00
Timothee "TTimo" Besset
442b412ae2 Merge pull request #13 from ValveSoftware/revert-12-patch-1
Revert "Add DualSense support"
2020-11-20 09:44:15 -06:00

View File

@@ -37,6 +37,9 @@ KERNEL=="hidraw*", ATTRS{idVendor}=="057e", ATTRS{idProduct}=="2009", MODE="0660
# Nintendo Switch Pro Controller over bluetooth hidraw
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"
# PowerA Wired Controller for Nintendo Switch
KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660", TAG+="uaccess"
@@ -47,12 +50,18 @@ KERNEL=="hidraw*", ATTRS{idVendor}=="20d6", ATTRS{idProduct}=="a711", MODE="0660
#
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
KERNEL=="hidraw*", ATTRS{idVendor}=="146b", ATTRS{idProduct}=="0d01", MODE="0660", TAG+="uaccess"
# Razer Raiju PS4 Controller
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1000", MODE="0660", TAG+="uaccess"
# Razer Raiju 2 Tournament Edition
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="1007", MODE="0660", TAG+="uaccess"
# Razer Panthera Arcade Stick
KERNEL=="hidraw*", ATTRS{idVendor}=="1532", ATTRS{idProduct}=="0401", MODE="0660", TAG+="uaccess"