{"id":48908741,"url":"https://github.com/linketh/trv","last_synced_at":"2026-04-16T22:03:58.744Z","repository":{"id":346037771,"uuid":"1188321969","full_name":"LinkeTh/trv","owner":"LinkeTh","description":"Rust implementation of the Windows only App/Service TR-VISION HOME for the AIO LCD Frozen Vision 360.","archived":false,"fork":false,"pushed_at":"2026-03-31T18:31:42.000Z","size":1099,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-03-31T19:19:33.170Z","etag":null,"topics":["archlinux","frozen-vision-360","linux","rust","thermalright"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/LinkeTh.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-03-21T23:08:52.000Z","updated_at":"2026-03-31T18:31:49.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/LinkeTh/trv","commit_stats":null,"previous_names":["linketh/trv"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/LinkeTh/trv","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinkeTh%2Ftrv","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinkeTh%2Ftrv/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinkeTh%2Ftrv/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinkeTh%2Ftrv/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/LinkeTh","download_url":"https://codeload.github.com/LinkeTh/trv/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/LinkeTh%2Ftrv/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31905896,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-16T18:22:33.417Z","status":"ssl_error","status_checked_at":"2026-04-16T18:21:47.142Z","response_time":69,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["archlinux","frozen-vision-360","linux","rust","thermalright"],"created_at":"2026-04-16T22:03:43.771Z","updated_at":"2026-04-16T22:03:58.723Z","avatar_url":"https://github.com/LinkeTh.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# trv\n\n`trv` is a Rust toolset for the Thermalright/Frozen Vision LCD display.\n\n- `trv tui` — interactive theme editor (Ratatui UI)\n- `trv daemon` — pushes a theme and streams live metrics to the device\n- `trv list` / `trv export` — preset helpers\n\n## Screenshots\n\nTR-VISION HOME software reference page:\n\n[https://www.thermalright.com/support/download/](https://www.thermalright.com/support/download/)\n\n![TR-VISION HOME software reference](images/TR-VISION_HOME.png)\n\n`trv tui` editor:\n\n![trv tui editor](images/TRV_TUI.png)\n\nExample LCD output on device:\n\n![trv LCD output](images/TRV_LCD_OUTPUT.png)\n\n![trv LCD output current device](images/TRV_LCD_OUTPUT_CURRENT.png)\n\n## Platform support\n\nCurrent installer support is **Arch Linux / CachyOS only**.\n\n## Requirements\n\nAt runtime/build time you need:\n\n- Linux (Arch or CachyOS)\n- `git`\n- `base-devel`\n- `rustup` (Rust toolchain)\n- `android-tools` (`adb`)\n- `systemd`\n\nRust requirement:\n\n- `rustc \u003e= 1.88` (project edition is Rust 2024)\n\nThe install script installs all required packages automatically.\n\n## Install or Update (one-liner)\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/LinkeTh/trv/main/install.sh | bash\n```\n\nWhat this does:\n\n1. Validates Arch/CachyOS\n2. Installs dependencies with `pacman`\n3. Installs/updates Rust stable via `rustup`\n4. Clones/updates the repo to `~/.local/share/trv/src`\n5. Builds `trv` in release mode\n6. Installs binary to `~/.local/bin/trv`\n7. Installs and enables user service `trv-daemon.service`\n\nService unit location:\n\n- `~/.config/systemd/user/trv-daemon.service`\n\n## Uninstall\n\n```bash\ncurl -fsSL https://raw.githubusercontent.com/LinkeTh/trv/main/uninstall.sh | bash\n```\n\nThis removes:\n\n- user service `trv-daemon.service`\n- installed binary `~/.local/bin/trv`\n- source checkout under `~/.local/share/trv/src`\n- PATH block inserted by `install.sh`\n\n## Manual build (without installer)\n\n```bash\ngit clone https://github.com/LinkeTh/trv.git\ncd trv\ncargo build --release\n./target/release/trv --help\n```\n\n## First run\n\n```bash\ntrv tui\n```\n\nTry presets:\n\n```bash\ntrv list\ntrv tui --preset all_metrics\ntrv tui --preset full_system\ntrv tui --preset video\n```\n\nNote: device-side theme activation can lag by up to ~10 seconds after push.\n\nTheme selection behavior:\n\n- `--theme` overrides everything\n- otherwise `trv` reads `~/.config/trv/config.toml` (`theme = \"...\"`)\n- if config has no valid theme, `~/.config/trv/themes/dashboard.toml` is created/used\n\nAfter a successful push from TUI, the active theme path is saved as default in:\n\n- `~/.config/trv/config.toml`\n\nSo both `trv tui` and `trv daemon` stay on the same theme by default.\n\n## Video widget compatibility\n\nVideo widgets are supported, but playback depends on the device decoder.\n\n- Prefer H.264 + `yuv420p`\n- Use lower resolution (for example 960x540)\n- Remove audio for maximum compatibility\n\nIf a video does not play on the device, transcode it first:\n\n```bash\nffmpeg -i input.mp4 \\\n  -vf \"scale=960:-2:flags=lanczos\" \\\n  -c:v libx264 -profile:v baseline -level 3.1 -pix_fmt yuv420p \\\n  -an -movflags +faststart \\\n  output_trv.mp4\n```\n\n## User service commands\n\n```bash\nsystemctl --user status trv-daemon.service\nsystemctl --user restart trv-daemon.service\nsystemctl --user stop trv-daemon.service\nsystemctl --user disable trv-daemon.service\n```\n\n## Keybinds\n\n- Full command usage and keybindings are in `USAGE.md`.\n- In the TUI Properties panel, image/video `path` fields open a file chooser and save as absolute host paths.\n\n## License\n\nMIT — see `LICENSE`.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinketh%2Ftrv","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flinketh%2Ftrv","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flinketh%2Ftrv/lists"}