Logitech Litra Glow (Linux Drivers)
What makes us different from other similar websites? › Forums › Tech › Logitech Litra Glow (Linux Drivers)
Tagged: Linux, Logitech Litra Glow, Ubuntu
- This topic has 7 replies, 1 voice, and was last updated 1 week, 3 days ago by thumbtak.
- AuthorPosts
- May 26, 2022 at 6:25 pm #6670thumbtakKeymaster
I just got the Logitech Litra Glow, well, I am waiting for it in the mail. While I wait for it, I wanted to get the drivers I found, working on my Linux machine. I got it to work. This is how.$ pip install litra-driver
$ sudo echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c900",\ MODE="0666"' > /etc/udev/rules.d/82-litra-glow.rules
$ sudo shutdown -r now
$ lcui
If you get this error message “ModuleNotFoundError: No module named ‘Tkinter” continue on, if not, you are done.
$ sudo apt-get install python3-tk
$ lcui
More information:
https://github.com/derickr/python-litra-driver
https://stackoverflow.com/questions/25905540/importerror-no-module-named-tkinter
May 27, 2022 at 8:03 am #6671thumbtakKeymasterI made an icon that you may use when adding the terminal command to the application menu.
May 28, 2022 at 7:15 pm #6672thumbtakKeymasterI found a bug in the program. The bug is with clicking “X” to close the window instead of “exit”. When you delete a profile, the “X” will not save the deleted profiles. The profile will return when you open the application. To remove them, you must click “exit”, after deleting them.
July 11, 2022 at 12:32 pm #6728thumbtakKeymasterIf you are getting this error message, install the following.
$ sudo apt install gir1.2-appindicator3-0.1
July 11, 2022 at 12:37 pm #6729thumbtakKeymasterIf you get a permission denied when doing this command …
$ echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c900",\ MODE="0666"' > /etc/udev/rules.d/82-litra-glow.rules
Run the following command and give Others, Read & Write access to the 82-litra-glow.rules file located in the /etc/udev/rules.d/ by running the following command …
$ sudo tee /etc/udev/rules.d/82-litra-glow.rules <<< 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c900",MODE="0666"'
July 11, 2022 at 12:48 pm #6730thumbtakKeymasterIf you are getting this error …
https://i.ibb.co/3zFJ20q/image.png
Run the following command …
$ sudo lcui
- This reply was modified 2 years, 5 months ago by thumbtak.
September 30, 2022 at 11:45 am #6785thumbtakKeymasterDecember 16, 2024 at 10:07 am #7669thumbtakKeymasterHow to install on later versions of Linux
$ sudo tee /etc/udev/rules.d/82-litra-glow.rules <<< 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c900",MODE="0666"'
$ sudo tee /etc/udev/rules.d/82-litra-beam.rules <<< 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c901",MODE="0666"'
$ sudo udevadm control --reload-rules
$ sudo udevadm trigger
$ sudo reboot
$ python3 -m venv litra
$ source litra/bin/activate
$ pip install litra-driver
$ lcui
You may use this script and make a shortcut on your panel to start the software. It may need modifying, depending on where you place the files. I out the environment in my home directory.
#!/bin/sh # Navigate to the home directory, or the directory where your virtual environment is cd ~/litra || exit # If this fails, exit the script # Activate the virtual environment if [ -f "bin/activate" ]; then . bin/activate # Use '.' (dot) instead of 'source' in sh else echo "Virtual environment not found. Exiting." exit 1 fi # Run open-webui lcui # Notify user the server is up echo "lcui should be opening"
The way I set it up in the launcher, on my panel is by copying the sh file and post it in the command section, with sh before the location of the file.
- AuthorPosts
- You must be logged in to reply to this topic.