Looking for testers! We need Linux, Windows, macOS, and BSD testers. If you have a Thermalright LCD or LED device on any platform, grab the latest release and let us know how it goes — run
trcc reportand paste the output in an issue. Every test report helps, even if nothing works yet!
Solo hobbyist project — built in my spare time, one device, no corporate backing. Just a Linux user who got tired of waiting for Thermalright to support us. If something breaks, please be patient — I do this for free because I like helping people. If this project helps you, consider buying me a beer 🍺 or Ko-fi ☕
Packages:
Huge thanks to @javisaman, @woebygon, @knappstar, @loosethoughts19-hash, @Xentrino, @Mr-Renegade, @Reborn627, and @Smokemic 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. 32 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.
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.
For detailed step-by-step instructions, troubleshooting, and alternative install methods, see the Install Guide.
| Distro | Install Guide |
|---|---|
| Fedora / Nobara / openSUSE | Fedora |
| Bazzite / Bluefin / Aurora / Universal Blue | Immutable Fedora |
| Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS / Zorin | Ubuntu / Debian |
| Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | PyPI install |
| Arch / CachyOS / Manjaro / EndeavourOS / Garuda | Arch |
| NixOS | NixOS |
| Gentoo | Gentoo |
| SteamOS (Steam Deck) | SteamOS |
| Windows 10/11 | Windows |
| macOS 11+ | macOS |
| FreeBSD | FreeBSD |
Each guide has a one-liner copy-paste command and step-by-step instructions. After installing, unplug and replug the USB cable, then run trcc gui.
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.
Best option for older distros (Ubuntu 22.04, Mint 21.x, Debian 11/12) or if you prefer Python packaging.
# Install system dependencies first
sudo apt install pipx libusb-1.0-0 sg3-utils p7zip-full libxcb-cursor0 # Debian/Ubuntu/Mint
sudo dnf install pipx libusb-1.0.0 sg3_utils p7zip # Fedora
# Install trcc-linux
pipx install trcc-linux
trcc setup # interactive wizard — udev rules, 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.
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.
Open a GitHub issue — that's the only place I see bug reports. I don't monitor Reddit, forums, or Discussions. Run trcc report, paste the output, and I'll get back to you.
Run trcc report and paste the output in an issue — takes 30 seconds. See the full list of devices that need testers.
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)49 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 |
| API Reference | All 46 REST API endpoints with request/response models |
| 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 |
| Category | What you get |
|---|---|
| GUI | Full PySide6 desktop app — theme browser, video player, overlay editor, LED control panel, 38 languages |
| CLI | 50 commands — trcc gui, trcc send, trcc video, trcc led-color, trcc screencast, and more |
| REST API | 49 endpoints — control everything remotely, build integrations, automate your setup |
| Themes | Local, cloud, and masks — carousel mode, export/import as .tr files, custom mask upload with X/Y positioning, 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: 109 source files, ~40K lines of Python, 5243 tests across 91 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.
- 38 languages — Windows has 10 (baked into PNGs). We render text at runtime, community can add more
- CLI + REST API — Windows is GUI-only. We have 53 CLI commands and 49 API endpoints for automation
- Custom mask upload — upload your own PNG overlay, position with X/Y controls, saved to
~/.trcc-user/ - No admin required — udev rules handle permissions. Windows needs "Run as Administrator"
- Open source — read the code, fix bugs, add features. Windows TRCC is closed-source .NET
- Screencast on Wayland — Windows can't do that either
- Hexagonal architecture — GUI, CLI, and API share the same core. No feature lag between interfaces
The Windows TRCC app ships 10 languages by baking translated text into separate PNG background images — 129 PNGs just for panel labels. We replaced all of that with a runtime i18n system: language-neutral background PNGs + QLabel text overlays rendered from core/i18n.py. Switching languages updates every label instantly — no restart, no extra files.
Supported languages: Simplified Chinese, Traditional Chinese, English, German, Russian, French, Portuguese, Japanese, Spanish, Korean, Italian, Dutch, Polish, Turkish, Arabic, Hindi, Thai, Vietnamese, Indonesian, Czech, Swedish, Danish, Norwegian, Finnish, Hungarian, Romanian, Ukrainian, Greek, Hebrew, Malay, Bengali, Urdu, Farsi, Tagalog, Tamil, Punjabi, Swahili, Burmese
Adding a new language is one dict entry per string in core/i18n.py — no PNG editing, no asset pipeline. Community translations welcome.
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.
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 — 49 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) & Bazzite RPM shebang fix
- 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
- jezzaw007 — Preview rotation & overlay resume bug reports
- Pewful2021 — PA120 LED troubleshooting
- lallemandgianni-boop — PA120 DIGITAL LCD PID investigation
- sleeper14200 — Linux Mint .deb compatibility bug report
- riodevelop — Frozen Warframe 240 HID tester
- wobbegongus — Frozen Warframe 240 HID tester & unresponsive GUI bug report
- Alb3e3 — Wonder Vision 360 UB ARGB Windows bulk USB testing
- Me-shok — Stream Vision bulk protocol testing on CachyOS
- kabi02 — Uninstall/reinstall bug report
Thanks to everyone who took a moment to star this project — it means the world.
alessa-lara · ArcaneCoder404 · betolink · bive242 · BrunoLeguizamon05 · cancos1 · cesarnr21 · codeflitting · dabombUSA · damachine · DasFlogetier · eap5 · emaspa · Gdetrane · gupsterg · jezzaw007 · jhlasnik · jmo808 · knappstar · mgaruccio · michael-spinelli · michelle0812 · mkogut · nathanielhernandez · oddajpierscien · Pewful2021 · Pikarz · qussaif10 · Rehaell · riodevelop · rslater · shadowepaxeor-glitch · ShaunnyBwoy · Smokemic · Spebelgenenst · spiritofjon · stephenvalente · Thymur · Vydon · Xentrino · Ziusz
Thanks for carrying the torch — these folks forked the repo to build on it.
dabombUSA · DasFlogetier · jezzaw007 · taillis
If this project saved you from keeping a Windows partition around, consider buying me a cold one.
GPL-3.0
