Advertisement
Guest User

Untitled

a guest
Dec 11th, 2017
323
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. $ cat /lib/udev/rules.d/99-steam-controller-perms.rules
  2. # Valve USB devices
  3. SUBSYSTEM=="usb", ATTRS{idVendor}=="28de", MODE="0666"
  4. # Steam Controller udev write access
  5. KERNEL=="uinput", SUBSYSTEM=="misc", TAG+="uaccess"
  6.  
  7. # Valve HID devices over USB hidraw
  8. KERNEL=="hidraw*", ATTRS{idVendor}=="28de", MODE="0666"
  9.  
  10. # Valve HID devices over bluetooth hidraw
  11. KERNEL=="hidraw*", KERNELS=="*28DE:*", MODE="0666"
  12.  
  13. # DualShock 4 over USB hidraw
  14. KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0666"
  15.  
  16. # DualShock 4 wireless adapter over USB hidraw
  17. KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="0ba0", MODE="0666"
  18.  
  19. # DualShock 4 Slim over USB hidraw
  20. KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="09cc", MODE="0666"
  21.  
  22. # DualShock 4 over bluetooth hidraw
  23. KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0666"
  24.  
  25. # DualShock 4 Slim over bluetooth hidraw
  26. KERNEL=="hidraw*", KERNELS=="*054C:09CC*", MODE="0666"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement