Getting Logitech Litra Glow working on Arch
You’ll need
Making it work
Recently some friends and I have been streaming some games together and due to me being a basement hermit my lighting was pretty shit. On the recommendation of a buddy I picked up the Logitech Litra and wanted to see how I could get it working in Linux. I came across this little app that Kharyam made and decided to try it out. Here’s how to get it all setup on Arch.
first make sure you have app indicator installed.
$ sudo pacman -Su libappindicator-gtk3
then add some udev rules for the logitech light
$ sudo tee /etc/udev/rules.d/82-litra-glow.rules <<< 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c900",MODE="0666"'
plug in your light to an available usb port
Install the driver
$ pip install litra-driver
add
$HOME/.local/bin:
to your shell environment path and logout/login (for me it’szsh
)$ nano .zshrc export PATH=$HOME/.local/bin:$PATH
Now you should be able to run the command line interface to see if it works.
$ lc --help
If you get output you’re good to go to run the x11 app.
$ lcui
You’re good to go!