Packages:
Huge thanks to @javisaman, @Xentrino, @loosethoughts19-hash, @Mr-Renegade, and @Reborn627 for the beers — you guys are legends.
Native Linux port of the Thermalright LCD Control Center (Windows TRCC 2.1.2). Control and customize the LCD displays and LED segment displays on Thermalright CPU coolers, AIO pump heads, and fan hubs — entirely from Linux.
This project wouldn't exist without our testers. I only own one device. Every supported device in this list works because someone plugged it in, ran
trcc report, and told me what broke. 29 testers helped us go from "SCSI only" to full C# feature parity with 6 USB protocols, 16 FBL resolutions, and 12 LED styles. Open source at its best — see Contributors below.
Unofficial community project, not affiliated with Thermalright. Built with Claude (AI) for protocol reverse engineering and code generation, guided by human architecture decisions and logical assessment.
Run trcc report and paste the output in an issue — takes 30 seconds. See the full list of devices that need testers.
| Category | What you get |
|---|---|
| GUI | Full PySide6 desktop app — theme browser, video player, overlay editor, LED control panel |
| CLI | 50 commands — trcc gui, trcc send, trcc video, trcc led-color, trcc screencast, and more |
| REST API | 43 endpoints — control everything remotely, build integrations, automate your setup |
| Themes | Local, cloud, and masks — carousel mode, export/import as .tr files, 5 starters + 120 masks per resolution |
| Media | Video/GIF playback, video trimmer, image cropper, screen cast (X11 + Wayland) |
| Overlay Editor | Text, sensors, date/time overlays — font picker, dynamic scaling, color picker |
| Hardware Sensors | 77+ sensors — CPU/GPU temp, fan speed, power, usage — customizable dashboard |
| LED Control | 12 LED styles, zone carousel, breathing/rainbow/static/wave modes, per-zone color |
| Display | 16 resolutions (240x240 to 1920x462), 0/90/180/270 rotation, 3 brightness levels |
| Multi-device | Per-device config, auto-detect, multi-device with device selection |
| Security | udev rules, polkit policy, SELinux support, no root required after setup |
Under the hood: 106 source files, ~38K lines of Python, 4021 tests across 56 test files in 9 directories. Hexagonal architecture with strict dependency injection — GUI, CLI, and API all talk to the same core services. 6 USB protocols reverse-engineered from the Windows C# app.
Run lsusb to find your USB ID (xxxx:xxxx after ID), then match it below.
SCSI devices — fully supported:
| USB ID | Devices |
|---|---|
87CD:70DB |
FROZEN HORIZON PRO, FROZEN MAGIC PRO, FROZEN VISION V2, CORE VISION, ELITE VISION, AK120, AX120, PA120 DIGITAL, Wonder Vision |
0416:5406 |
LC1, LC2, LC3, LC5 (AIO pump heads) |
0402:3922 |
FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE, ELITE VISION 360 |
Bulk USB devices — raw USB protocol:
| USB ID | Devices |
|---|---|
87AD:70DB |
GrandVision 360 AIO, Mjolnir Vision 360, Wonder Vision Pro 360, Frozen Warframe Pro |
LY USB devices — chunked bulk protocol:
| USB ID | Devices |
|---|---|
0416:5408 |
Trofeo Vision 9.16 LCD |
0416:5409 |
(LY1 variant) |
HID LCD devices — auto-detected:
| USB ID | Devices |
|---|---|
0416:5302 |
Trofeo Vision LCD, Assassin Spirit 120 Vision ARGB, AS120 VISION, BA120 VISION, FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE, FROZEN WARFRAME PRO, ELITE VISION, LC5 |
0418:5303 |
TARAN ARMS |
0418:5304 |
TARAN ARMS |
HID LED devices — RGB LED control:
| USB ID | Devices |
|---|---|
0416:8001 |
AX120 DIGITAL, PA120 DIGITAL, Peerless Assassin 120 DIGITAL ARGB White, Assassin X 120R Digital ARGB, Phantom Spirit 120 Digital EVO, HR10 2280 PRO Digital, and others (model auto-detected via handshake) |
See the full device list with protocol details and the Device Testing Guide if you have an untested device.
Pre-built packages are available for every major distro. No pip, no venv, no PEP 668 headaches — just download and install like any other app. Every release is built automatically from source using GitHub Actions — the build logs are public so anyone can verify what went in.
Step 1: Go to the latest release and download the package for your distro.
Not sure which distro you're running? Open a terminal and type
cat /etc/os-release— theIDline tells you.
Step 2: Open a terminal in your Downloads folder and install:
Fedora / openSUSE / Nobara:
cd ~/Downloads
sudo dnf install ./trcc-linux-*.noarch.rpmUbuntu / Debian / Mint / Pop!_OS / Zorin:
cd ~/Downloads
sudo dpkg -i trcc-linux_*_all.deb
sudo apt-get install -f # pulls in any missing dependenciesArch / CachyOS / Manjaro / EndeavourOS / Garuda:
cd ~/Downloads
sudo pacman -U trcc-linux-*-any.pkg.tar.zstNixOS — add to your flake.nix inputs:
{
inputs.trcc-linux.url = "github:Lexonight1/thermalright-trcc-linux";
# In your system configuration:
programs.trcc-linux.enable = true;
}Then run sudo nixos-rebuild switch.
Step 3: Unplug and replug the USB cable, or reboot (this reloads the device permissions).
Step 4: Launch the app:
trcc guiThat's it! If your device isn't detected, run trcc detect --all to see what's connected, or trcc report and open an issue with the output.
Every release includes a SHA256SUMS.txt file. Download it from the same release page, then:
cd ~/Downloads
sha256sum -c SHA256SUMS.txt --ignore-missingIf you see OK next to your package — it's clean. Source code is GPL-3.0, fully auditable — no binaries, no obfuscation, no telemetry.
pipx install trcc-linux
trcc setup # interactive wizard — deps, udev, desktop entryThen unplug and replug the USB cable and run trcc gui.
pipxnot installed?sudo apt install pipx(Debian/Ubuntu),sudo dnf install pipx(Fedora),sudo pacman -S python-pipx(Arch). See the Install Guide for your distro.
bash <(curl -sSL https://raw.githubusercontent.com/Lexonight1/thermalright-trcc-linux/main/setup.sh)Downloads and installs trcc-linux, then launches the setup wizard.
git clone https://github.com/Lexonight1/thermalright-trcc-linux.git
cd thermalright-trcc-linux
sudo ./install.shDetects your distro, installs system packages, Python deps, udev rules, and desktop shortcut.
Fedora, Nobara, Ubuntu, Debian, Mint, Pop!_OS, Zorin, elementary OS, Arch, Manjaro, EndeavourOS, CachyOS, Garuda, openSUSE, Void, Gentoo, Alpine, NixOS, Bazzite, Aurora, Bluefin, SteamOS (Steam Deck).
trcc: command not found? Open a new terminal — pip installs to~/.local/binwhich needs a new shell session to appear on PATH.
See the Install Guide for distro-specific instructions and troubleshooting.
trcc guiFull desktop app with theme browser, video player, overlay editor, LED control panel, and hardware sensor dashboard.
trcc detect # Show connected devices
trcc send image.png # Send image to LCD
trcc color "#ff0000" # Fill LCD with solid color
trcc video clip.mp4 # Play video on LCD
trcc screencast # Live screen capture to LCD
trcc brightness 2 # Set brightness (1=25%, 2=50%, 3=100%)
trcc rotation 90 # Rotate display (0/90/180/270)
trcc theme-list # List available themes
trcc theme-load NAME # Load a theme by name
trcc overlay # Render and send overlay
trcc led-color "#00ff00" # Set LED color
trcc led-mode breathing # Set LED effect mode
trcc report # Generate diagnostic report
trcc doctor # Check system dependencies
trcc setup # Interactive setup wizard
trcc uninstall # Remove TRCC completely50 commands total — see the CLI Reference for the full list.
Start the API server and control your devices remotely:
trcc serve # Start on http://localhost:9876
trcc serve --port 8080 # Custom port
trcc serve --tls # HTTPS with auto-generated self-signed cert
trcc serve --host 0.0.0.0 # Listen on all interfaces (LAN access)43 endpoints covering devices, display, LED, themes, and system metrics. Use trcc api to list all endpoints.
# Examples with curl
curl http://localhost:9876/devices # List devices
curl -X POST http://localhost:9876/display/send \
-F "file=@wallpaper.png" # Send image
curl -X POST http://localhost:9876/led/color \
-H "Content-Type: application/json" \
-d '{"color": "#ff0000"}' # Set LED color| Document | Description |
|---|---|
| Install Guide | Installation for all major distros |
| CLI Reference | All CLI commands with options and examples |
| Troubleshooting | Common issues and fixes |
| New to Linux | Guide for Linux beginners |
| Changelog | Version history |
| Supported Devices | Full device list with USB IDs and protocols |
| Testers Wanted | Devices that need hardware validation |
| Device Testing Guide | How to test and report device compatibility |
| Architecture | Project layout and design |
| Technical Reference | SCSI protocol and file formats |
| Document | Description |
|---|---|
| USBLCD Protocol | SCSI frame transfer protocol |
| USBLCDNEW Protocol | USB bulk/LY frame transfer protocol |
| USBLED Protocol | HID LED segment display protocol |
src/trcc/
├── core/ # Models, enums, domain constants — zero I/O
├── services/ # Business logic — pure Python, no framework deps
├── adapters/ # USB device protocols (SCSI, HID, Bulk, LY, LED)
├── qt_components/ # PySide6 GUI (themes, video, overlay, LED, sensors)
├── cli/ # Typer CLI — 50 commands across 8 modules
├── api/ # FastAPI REST API — 43 endpoints across 7 modules
├── conf.py # Settings singleton
└── assets/ # GUI images, desktop entry, polkit policy, systemd service
Hexagonal architecture — GUI, CLI, and API are interchangeable adapters over the same core services. Adding a new interface (Android app, Home Assistant plugin) means writing a new adapter, not touching business logic.
6 USB protocols reverse-engineered from the Windows C# app:
| Protocol | Transport | Devices |
|---|---|---|
| SCSI | SG_IO ioctl | Frozen Warframe, Elite Vision, AK/AX120, PA120, LC1-5 |
| HID Type 2 | pyusb interrupt | Trofeo Vision, Assassin Spirit, AS/BA120, Frozen Warframe SE/PRO |
| HID Type 3 | pyusb interrupt | TARAN ARMS |
| Bulk | pyusb bulk | GrandVision 360, Mjolnir Vision 360, Wonder Vision Pro 360, Frozen Warframe Pro |
| LY | pyusb bulk (chunked) | Trofeo Vision 9.16 LCD |
| LED | pyusb HID | All LED segment display devices (12 styles) |
A big thanks to everyone who has contributed invaluable reports to this project:
- Xentrino — Peerless Assassin 120 Digital ARGB White LED testing across 15+ versions
- hexskrew — Assassin X 120R Digital ARGB HID testing & GUI layout feedback
- javisaman — Phantom Spirit 120 Digital EVO LED testing & GPU phase validation
- Pikarz — Mjolnir Vision 360 bulk protocol testing
- michael-spinelli — Assassin Spirit 120 Vision ARGB HID testing & font style bug report
- Rizzzolo — Phantom Spirit 120 Digital EVO hardware testing
- N8ghtz — Trofeo Vision HID testing
- Lcstyle — HR10 2280 PRO Digital testing
- PantherX12max — Trofeo Vision LCD hardware testing
- shadowepaxeor-glitch — AX120 Digital hardware testing & USB descriptor dumps
- bipobuilt — GrandVision 360 AIO bulk protocol testing
- cadeon — GrandVision 360 AIO bulk protocol testing
- gizbo — FROZEN WARFRAME SCSI color bug report
- apj202-ops — Frozen Warframe SE HID testing
- Edoardo-Rossi-EOS — Frozen Warframe 360 HID testing
- edoargo1996 — Frozen Warframe 360 HID testing
- stephendesmond1-cmd — Frozen Warframe 360 HID Type 2 testing
- acioannina-wq — Assassin Spirit 120 Vision HID testing
- Civilgrain — Wonder Vision Pro 360 bulk protocol testing
- loosethoughts19-hash — Frozen Warframe Pro bulk protocol testing
- Mr-Renegade — Peerless Vision LY protocol testing & portrait rotation feedback
- Reborn627 — GrandVision 360 AIO HiDPI scaling & CachyOS testing
- tensaiteki — Elite Vision 360 SCSI detection on CachyOS (sg module bug)
- wrightbyname — CLI compatibility testing & bug report
- Scifiguygaming — Frozen Warframe HID testing on CachyOS
- mog199 — HID Type 2 permission error bug report
- ravensvoice — Trofeo Vision portrait cloud theme feature request
- rhuggins573-crypto — Assassin X 120R Digital ARGB LED bug report on Bazzite
- knappstar — Scrambled display bug report & SCSI permission troubleshooting
Thanks to everyone who took a moment to star this project — it means the world.
alessa-lara · ArcaneCoder404 · betolink · BrunoLeguizamon05 · cancos1 · codeflitting · dabombUSA · damachine · emaspa · honjow · jezzaw007 · jhlasnik · jmo808 · ligmaSec · mgaruccio · michael-spinelli · nathanielhernandez · oddajpierscien · Pikarz · Rehaell · rslater · Smokemic · spiritofjon · Vydon · Xentrino · Ziusz
Thanks for carrying the torch — these folks forked the repo to build on it.
dabombUSA · jezzaw007 · taillis
If this project saved you from keeping a Windows partition around, consider buying me a cold one.
GPL-3.0
