Skip to content

Commit 16f2bc3

Browse files
committed
Remove reference to linux group, as the perms are global anyway
1 parent d109feb commit 16f2bc3

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@ Either include the library in your project or install it with the following comm
2121
go get github.com/magicmonkey/go-streamdeck
2222
```
2323

24-
On Linux, you might also need to add some `udev` rules (this assumes there's a `plugdev` group, like on Debian-based systems, feel free to amend the group to something more appropriate for your system). Put this into `/etc/udev/rules.d/99-streamdeck.rules`:
24+
On Linux, you might also need to add some `udev` rules. Put this into `/etc/udev/rules.d/99-streamdeck.rules`:
2525
```
26-
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0060", MODE:="666", GROUP="plugdev"
27-
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0063", MODE:="666", GROUP="plugdev"
28-
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="006c", MODE:="666", GROUP="plugdev"
29-
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="006d", MODE:="666", GROUP="plugdev"
26+
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0060", MODE:="666"
27+
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0063", MODE:="666"
28+
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="006c", MODE:="666"
29+
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="006d", MODE:="666"
3030
```
3131

3232
## Usage

0 commit comments

Comments
 (0)