-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add udev rules and information on them to the README
Using udev rules is the preferred way of using the software.
- Loading branch information
Showing
2 changed files
with
39 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# This is a udev rules file. To use it, copy it over to /etc/udev/rules.d/90-ratctl.rules | ||
# (this might change depending on your distribution). | ||
|
||
# Saitek Devices | ||
|
||
# Cyborg R.A.T.5 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="06a3", ATTRS{idProduct}=="0cc3", TAG+="uaccess" | ||
# old Cyborg R.A.T.7 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="06a3", ATTRS{idProduct}=="0ccb", TAG+="uaccess" | ||
# Cyborg R.A.T.3 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="06a3", ATTRS{idProduct}=="0ccc", TAG+="uaccess" | ||
# Cyborg R.A.T.9 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="06a3", ATTRS{idProduct}=="0cd7", TAG+="uaccess" | ||
# Cyborg R.A.T.9 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="06a3", ATTRS{idProduct}=="0cd9", TAG+="uaccess" | ||
# Cyborg R.A.T.9 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="06a3", ATTRS{idProduct}=="0cfa", TAG+="uaccess" | ||
|
||
# Mad Catz Devices | ||
|
||
# R.A.T 5 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="1705", TAG+="uaccess" | ||
# R.A.T 9 | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="1709", TAG+="uaccess" | ||
# R.A.T PRO X | ||
SUBSYSTEM=="usb", ATTRS{idVendor}=="0738", ATTRS{idProduct}=="1718", TAG+="uaccess" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters