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 6 replies, 1 voice, and was last updated 2 years, 1 month 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, 4 months ago by thumbtak.
September 30, 2022 at 11:45 am #6785thumbtakKeymaster - AuthorPosts
- You must be logged in to reply to this topic.