https://bugs.winehq.org/show_bug.cgi?id=57484 --- Comment #7 from Rémi Bernon <rbernon(a)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" ``` -- Do not reply to this email, post in Bugzilla using the above URL to reply. You are receiving this mail because: You are watching all bug changes.