This has been tested on Arch with XFCE, Manjaro in Feb 2023.
sudo pacman -S hidapi python-pip qt6-base
You need to add ~/.local/bin
to your path. Be sure to add this to your .bashrc
(or equivalent) file so it automatically sets it for you in future.
PATH=$PATH:$HOME/.local/bin
You may need to upgrade pip, using pip. On Arch this is usually not required. Setuptools is required but may not be installed on Arch.
python -m pip install --upgrade pip
python -m pip install setuptools
The following will create a file called /etc/udev/rules.d/70-streamdeck.rules
and add the following text to it: SUBSYSTEM=="usb", ATTRS{idVendor}=="0fd9", TAG+="uaccess"
. Creating this file adds a udev rule that provides your user with access to USB devices created by Elgato.
sudo sh -c 'echo "SUBSYSTEM==\"usb\", ATTRS{idVendor}==\"0fd9\", TAG+=\"uaccess\"" > /etc/udev/rules.d/70-streamdeck.rules'
For the rule to take immediate effect, run the following command:
sudo udevadm trigger
If the software is having problems later to detect the Stream Deck, you can try unplugging/plugging it back in.
python -m pip install streamdeck-ui --user
Launch with
streamdeck
See troubleshooting for tips if you're stuck.