Skip to content

Commit

Permalink
Merge pull request #84 from ch1r0x/83-syntax-error-in-udev-rule
Browse files Browse the repository at this point in the history
fix: correct syntax error in udev rule #83
  • Loading branch information
trackmastersteve authored Sep 18, 2020
2 parents 1cf9772 + c6d148a commit 6ec9d31
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion alienfx/data/etc/udev/rules.d/10-alienfx.rules
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
SUBSYSTEM=="usb", ATTR{idVendor}=="187c", ATTR{idProduct}=="0511", MODE:="666", GROUP="users"

# USB device 0x187c:0x0526 (AlienFX controller for Area51 R2 Desktop)
SUBSYSTEM=="usb", ATTR(idVender)=="187c", ATTR(idProduct)=="0526", MODE:="666", GROUP="users"
SUBSYSTEM=="usb", ATTR{idVendor}=="187c", ATTR{idProduct}=="0526", MODE:="666", GROUP="users"

# USB device 0x187c:0x0514 (AlienFX controller for M11xR1 laptop)
SUBSYSTEM=="usb", ATTR{idVendor}=="187c", ATTR{idProduct}=="0514", MODE:="666", GROUP="users"
Expand Down

0 comments on commit 6ec9d31

Please sign in to comment.