loader image

Logitech Litra Glow (Linux Drivers)

What makes us different from other similar websites? Forums Tech Logitech Litra Glow (Linux Drivers)

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #6670
    thumbtak
    Keymaster


    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

    Amazon Product Link

    #6671
    thumbtak
    Keymaster

    I made an icon that you may use when adding the terminal command to the application menu.

    #6672
    thumbtak
    Keymaster

    I 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.

    #6728
    thumbtak
    Keymaster

    If you are getting this error message, install the following.

    $ sudo apt install gir1.2-appindicator3-0.1

    #6729
    thumbtak
    Keymaster

    If 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"'

    #6730
    thumbtak
    Keymaster

    If you are getting this error …

    https://i.ibb.co/3zFJ20q/image.pngimage

    Run the following command …
    $ sudo lcui

    • This reply was modified 2 years, 5 months ago by thumbtak.
    #6785
    thumbtak
    Keymaster

    If you get this error:

    ModuleNotFoundError: No module named 'tkinter'

    Run this command:

    
    $ sudo apt-get install python3-tk

    #7669
    thumbtak
    Keymaster

    How 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.

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.
TAKs Shack