| Crates.io | litra-glow |
| lib.rs | litra-glow |
| version | 0.2.1 |
| created_at | 2026-01-22 20:33:34.832048+00 |
| updated_at | 2026-01-23 01:45:28.249127+00 |
| description | Cross-platform Logitech Litra Glow controller with GUI |
| homepage | https://github.com/3axap4eHko/litra |
| repository | https://github.com/3axap4eHko/litra |
| max_upload_size | |
| id | 2062572 |
| size | 587,244 |
Cross-platform Logitech Litra Glow controller with a native GUI.

Pre-built binaries are available on the Releases page:
| Platform | File |
|---|---|
| Windows x64 | litra-glow-windows-x86_64.zip |
| macOS Apple Silicon | litra-glow-macos-aarch64.tar.gz |
| macOS Intel | litra-glow-macos-x86_64.tar.gz |
| Linux x64 | litra-glow-linux-x86_64.tar.gz |
sudo apt-get install libusb-1.0-0-dev libudev-dev libdbus-1-dev libx11-dev
cargo build --release
The binary will be at target/release/litra-glow (or litra-glow.exe on Windows).
Create a udev rule to allow access without root:
echo 'SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c900", MODE="0666"' | sudo tee /etc/udev/rules.d/50-litra-glow.rules
sudo udevadm control --reload-rules
sudo udevadm trigger
No additional setup required.
Run the application without arguments to launch the GUI:
./litra-glow
When any CLI flag is provided, the app runs in headless mode and exits after applying the command. It does not launch the GUI, which makes it suitable for scripts and automation.
Windows note: release builds use the GUI subsystem, so headless output is written to the parent
terminal if one exists. Run the command from PowerShell or CMD to see --status output.
Control the lamp directly from the command line:
# Show current status (JSON output)
./litra-glow --status
# {"power":true,"brightness":50,"temperature":4000}
# Power control
./litra-glow --on
./litra-glow --off
./litra-glow --toggle
# Set brightness (0-100%)
./litra-glow --brightness 50
# Set color temperature (2700-6500K)
./litra-glow --temperature 4000
# Combined commands
./litra-glow --on --brightness 75 --temperature 5000
# Show help
./litra-glow --help
Enable debug logging:
RUST_LOG=debug ./litra-glow
MIT License - Copyright 2026 Ivan Zakharchanka