timothycrosley / streamdeck-ui

A Linux compatible UI for the Elgato Stream Deck.
https://timothycrosley.github.io/streamdeck-ui/
MIT License
1.14k stars 242 forks source link

Docs missing V2 USB product ID #225

Closed tidux closed 1 year ago

tidux commented 2 years ago

The udev rules example should be as follows:

SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0060", TAG+="uaccess"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0063", TAG+="uaccess"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="006c", TAG+="uaccess"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="006d", TAG+="uaccess"
SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0080", TAG+="uaccess"

The 0080 ID is not in the github.io homepage and so might mislead V2 owners.

sftim commented 2 years ago

@tidux would you be willing to open a pull request with a proposed update?

cas-- commented 2 years ago

Would it be better to wildcard this to a single line:

SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="00[6,8]*", TAG+="uaccess"
dodgyrabbit commented 1 year ago

The GitHub docs have been updated. Thanks!