https://bugs.winehq.org/show_bug.cgi?id=57484
--- Comment #7 from RĂ©mi Bernon rbernon@codeweavers.com --- I think something like that would work for USB devices, with the idVendor and idProduct adjusted. What matters is probably MODE="0660" and TAG+="uaccess":
``` # DualShock 4 over USB hidraw KERNEL=="hidraw*", ATTRS{idVendor}=="054c", ATTRS{idProduct}=="05c4", MODE="0660", TAG+="uaccess" ```
When using a different subsystem like bluetooth the rule is slightly different:
``` # DualShock 4 over bluetooth hidraw KERNEL=="hidraw*", KERNELS=="*054C:05C4*", MODE="0660", TAG+="uaccess" ```