timothycrosley / streamdeck-ui

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

Add rule for Stream Deck Mini to the guide #297

Closed saldang closed 1 year ago

saldang commented 1 year ago

Describe the bug Following the manual installation https://timothycrosley.github.io/streamdeck-ui/ from the guide the Stream Deck mini is not accessible.

To Reproduce Steps to reproduce the behavior:

  1. sudo apt install python3-pip libhidapi-libusb0 libxcb-xinerama0
  2. sudo nano /etc/udev/rules.d/70-streamdeck.rules
  3. 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"
  4. See error

Screenshots image

Operating system (please complete the following information)

Stream Deck Version

To fix the guide just add the following line: SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", ATTRS{idProduct}=="0090", TAG+="uaccess"

LinuxGamesTV commented 1 year ago

Why?

SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", TAG+="uaccess"

This is the rule for all Elgato devices.

This mean you don't need the entry:

, ATTRS{idProduct}=="0090"

saldang commented 1 year ago

I agree with you but here I think that can be updated

dodgyrabbit commented 1 year ago

Thanks, the documentation has been updated.