trcc-linux 9.7.7__tar.gz → 9.7.9__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/PKG-INFO +9 -3
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/README.md +8 -2
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/pyproject.toml +1 -1
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/__version__.py +1 -1
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/diagnostics/debug_report.py +56 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/gpu_detect.py +8 -1
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/hwmon.py +23 -3
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_autostart.py +7 -2
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_udev.py +38 -2
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/linux.py +8 -1
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/app.py +10 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/led.py +11 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/led_effects.py +148 -23
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/led_segment.py +86 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/main.py +20 -3
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/__init__.py +12 -3
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_about.py +8 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_led_control.py +27 -5
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_autostart.py +14 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_cli_commands.py +38 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_diagnostics.py +45 -0
- trcc_linux-9.7.9/tests/test_gpu_extras_install.py +99 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_gui_entry_exit.py +21 -2
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_gui_panels.py +34 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_animation_loop.py +40 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_effects.py +119 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensors.py +41 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_udev.py +19 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/.gitignore +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/LICENSE +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/__main__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/_boot.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/_entry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/_pyusb_find.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/bulk_lcd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/hid_lcd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/led.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/ly_lcd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/scsi_lcd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/transport.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/device/usb_bot_scsi.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/diagnostics/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/diagnostics/adapter.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/diagnostics/doctor.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/diagnostics/health.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/infra/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/infra/logging.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/infra/network.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/infra/send_scheduler.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/infra/sysinfo_config.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/render/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/render/qt.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/repo/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/repo/data_install.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/repo/github_releases.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/repo/http.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/screencast/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/screencast/qt.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_hwinfo.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_lhm.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_macos_hid.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_msacpi.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_powermetrics.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_smc.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_sysctl.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/_wmi_gpu.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/aggregator.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/bsd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/chain.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/macos.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/nvml.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/psutil_sources.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/sensors/windows.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_devd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_elevate.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_hotplug.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_imc_timings.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_macos_setup.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_selinux.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_windows_wmi.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/_winusb.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/bsd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/macos.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/spd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/system/windows.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/theme/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/adapters/theme/cloud.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/LibreHardwareMonitor.config +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/trcc-imc +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/_colors.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/_safe.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/_version.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/_base.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/_helpers.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/device.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/system.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/commands/theme.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/device_recovery.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/diagnostics.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/errors.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/events.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/i18n.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/led_models.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/led_protocol.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/models.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/ports.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/protocol.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/registry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/results.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/core/variants.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/daemon.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ipc.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/proxy.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/_ansi.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/_clock.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/_dc.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/audio.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/cloud_theme.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/data_install.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/device_sender.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/display.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/first_run.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/led_animation_loop.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/media.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/metrics_loop.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/metrics_personalize.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/migration.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/overlay.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/quickstart.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/settings.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/slideshow.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/theme.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/video_cache.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/services/video_export.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/_errors.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/_shared.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/config.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/devices.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/display.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/led.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/main.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/schemas.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/system.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/theme.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/api/trcc.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/_ctx.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/config.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/device.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/display.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/led.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/shell.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/system.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/cli/theme.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/_ui_state.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/240240.gif +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/240320.gif +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/320240.gif +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/320320.gif +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AK120 Digital.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AK120 Digitala.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AK120_Digital.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AK120_Digitala.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AS120 VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AS120 VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AS120_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AS120_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1BA120 VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1BA120 VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1BA120_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1BA120_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CORE VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CORE VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CORE_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CORE_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CZ1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CZ1a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CZ2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CZ2a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CZTV.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1CZTVa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1ELITE VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1ELITE VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1ELITE_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1GRAND VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1GRAND VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1GRAND_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1HYPER VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1HYPER VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1HYPER_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1KVMALEDC6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1KVMALEDC6a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC10.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC10a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC13.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC13a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC15.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC15a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC1a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC2JD.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC2JDa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC2a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC3a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC5a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC7.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC7a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC8.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC8a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC9.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LC9a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD10.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD10a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD11.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD11a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD6a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD7.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD7a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD8.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD8a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD9.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LD9a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF014.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF014a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF10.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF10V.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF10Va.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF10a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF11.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF11a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF12.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF12a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF13.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF13a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF14.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF14a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF15.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF15a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF16.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF167.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF16a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF17a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF18.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF18a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF19.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF19a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF20.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF20a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF21.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF21a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF22.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF22a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF25.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF25a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF8.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LF8a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM16SE.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM16SEa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM19SE.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM19SEa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM22.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM22a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM24.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM24a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM26.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM26a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM27.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM27a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM30.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1LM30a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1PC1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1PC1a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RP130 VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RP130 VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RP130_VISION.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RP130_VISIONa.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RX1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1RX1a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Stream Vision.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Stream Visiona.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Stream_Vision.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/A1Stream_Visiona.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/about_dropdown.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/about_dropdown_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/about_dropdown_select.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/about_update.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/about_update_overlay.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_about_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_brightness_0.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_brightness_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_brightness_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_brightness_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_export.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_form_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_help.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_import.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_main_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_power.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_power_hover.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_save.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_sysinfo_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_cloud.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_cloud_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_local.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_local_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_mask.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_mask_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_mask_lower.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_settings.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_tab_settings_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_theme_base_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_theme_gallery_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/app_theme_settings_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_btn.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_btn_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/carousel_select_frame.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_panel_eyedropper.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_panel_picker.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_panel_selector_ring.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_panel_slider_thumb.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_wheel_knob.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_wheel_knob_0.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_wheel_toggle_hover.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_wheel_toggle_off.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/color_wheel_toggle_on.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_12h.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_24h.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_border.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_border_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_crop.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_date_dm.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_date_dmy.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_date_md.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_date_ymd.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_digit_font.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_fit_height.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_fit_width.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_function.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_function_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon_gif.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon_image.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon_livestream.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon_mask.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon_network.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_icon_video.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m1_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m2_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m3_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m4_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m5_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_m6_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_minus.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_network_btn.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_plus.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_rotate.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_slider_thumb.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_text_font.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_unit_c.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/display_mode_unit_f.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/frozen_warframe_ultra.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/frozen_warframe_ultra_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_110x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_116x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_1280x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_160x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_180x400.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_180x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_240x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_240x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_240x400.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_240x427.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_270x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_320x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_320x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_320x86.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_360x360.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_400x180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_400x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_427x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_480x110.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_480x116.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_480x160.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_480x180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_480x270.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_480x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/image_cut_86x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_aggregate.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_aggregate_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_cz1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_kvma.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lc1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lc2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lf10.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lf11.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lf12.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lf13.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lf15.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_lf8.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_rgb_lf13.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_segment.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_bg_segment_4zone.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_dropdown.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_dropdown_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_dropdown_highlight.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_dropdown_highlight_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_dropdown_menu.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_dropdown_menu_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_external.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_external_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_helmet_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_helmet_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_helmet_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_helmet_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_helmet_5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bar_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bar_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bar_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bar_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bar_5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bar_6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_5_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_meter_bg_6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_10.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_10_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_11.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_11_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_12.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_12_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_1_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_2_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_3_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_4_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_5_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_6_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_7.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_7_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_8.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_8_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_9.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_mode_9_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_power.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_power_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_blue.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_cyan.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_green.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_orange.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_purple.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_red.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_white.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preset_yellow.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_ak120.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_ax120.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_cz1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_frozen_horizon_pro.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_frozen_magic_pro.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lc1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lc2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lf10.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lf11.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lf12.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lf13.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lf15.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_lf8.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_pa120.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_preview_pa120_space.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_show_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_show_1_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_show_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_show_2_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_show_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_show_3_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_slider_thumb.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_1_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_2_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_3_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_btn_4_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_1_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_2_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_3_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_4_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_5.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_5_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_6.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/led_zone_mode_6_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_sysinfo.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_sysinfo_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_sysinfo_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_text.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_text_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_text_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_time.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_time_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_label_time_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_mode_date.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_mode_hardware.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_mode_text.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_mode_time.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_mode_weekday.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/overlay_select.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_110x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_116x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_160x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_180x400.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_180x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_240x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_240x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_240x400.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_240x427.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_270x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_320x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_320x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_320x320_round.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_320x86.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_360x360_round.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_400x180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_400x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_427x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x110.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x116.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x160.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x270.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_480x480_round.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_86x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_animation.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_btn.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_btn_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_pause.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_play.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_player_control_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_1280x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_1920x440.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_1920x462.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_320x960.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_360x800.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_440x1920.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_462x1920.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_480x1280.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_480x800.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_480x854.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_540x960.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_800x360.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_800x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_854x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_960x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_popup_960x540.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_res_240x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_res_240x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_res_320x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_res_320x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_round_mask_320x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_round_mask_360x360.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_round_mask_480x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_video_controls_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/preview_video_controls_bg_alt.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/screen_led_deco_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/screen_led_deco_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/screen_led_deco_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/screen_led_deco_4.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/screen_led_deco_cz1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_d.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_e.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_f.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_h.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_p.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_r.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/secondary_screen_bg_x.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_content.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_content_btn.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_content_mask.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_date.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_date_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_icon.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_link_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_text.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_text_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_time.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_time_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_weekday.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_add_weekday_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_anim_sync.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_background.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_brightness.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_keyboard_sync_1.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_keyboard_sync_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_keyboard_sync_3.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_module.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_overlay.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_overlay_add_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_overlay_color_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_overlay_grid_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_overlay_table_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/settings_params.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_brightness_bar.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_checkbox_off.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_checkbox_on.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_clip_a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_clip_b.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_close.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_close_2.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_dropdown.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_dropdown_bg_2x.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_dropdown_bg_4x.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_dropdown_highlight.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_loading_animation.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_progress_bar.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_round_close.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_round_confirm.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_scrollbar_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_scrollbar_thumb.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_shortcut_size_slider.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_thread_multi.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_thread_single.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_toggle_off.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shared_toggle_on.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_d.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_e.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_f.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_p.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_r.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/shortcuts_panel_x.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_about.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_about_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_about_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_no_device.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_sensor.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_sensor_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_splash.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sidebar_sysinfo_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_a.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_a_180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_a_270.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_a_90.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_b.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_b_180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_b_270.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_b_90.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_c.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_c_180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_c_270.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/split_overlay_c_90.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_add_group.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_cpu.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_custom.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_dram.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_fan.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_gpu.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_hdd.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_net.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_next_page.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_prev_page.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_scrollbar.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/sysinfo_select.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_browser_filter.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_browser_filter_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_d.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_e.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_en.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_f.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_h.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_p.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_r.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_tc.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_cloud_label_x.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_carousel.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_carousel_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_export_all.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_multi_select.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_multi_select_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_select_frame.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_local_select_frame_active.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/theme_mask_label.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_110x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_116x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_1280x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_160x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_180x400.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_180x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_240x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_240x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_240x400.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_240x427.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_270x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_320x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_320x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_320x86.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_360x360.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_400x180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_400x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_427x240.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_480x110.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_480x116.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_480x160.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_480x180.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_480x270.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_480x480.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_86x320.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_bg.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets/video_cut_bg_alt.png +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/assets.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/base.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/base_handler.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/bus_bridge.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/color_and_add_panels.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/constants.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/display_mode_panels.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/eyedropper.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/gpu_reader_prompt.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/lcd_handler.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/led_handler.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/overlay_element.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/overlay_grid.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/pipewire_capture.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/screen_capture.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/splash.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/trcc_app.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_activity_sidebar.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_color_wheel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_device.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_image_cut.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_info_module.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_preview.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_screen_led.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_sensor_picker.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_system_info.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_theme_local.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_theme_mask.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_theme_setting.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_theme_web.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/gui/uc_video_cut.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/device_presentation.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/lcd_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/lcd_presentation_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/led_display.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/led_metrics_format.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/led_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/led_zone_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/overlay_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/overlay_serialization.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/preview_geometry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/sensor_display.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/slideshow_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/presentation/theme_directories.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qapp.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/app.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/assets.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/base.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/bus_bridge.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/color_wheel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/device_picker.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/eyedropper.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/image_crop.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/about_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/cloud_theme_browser.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/configuration_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/device_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/display_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/_base.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/advanced_tab.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/color_tab.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/mode_tab.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/segment_tab.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led/zone_tab.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/led_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/local_theme_browser.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/mask_browser.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/overlay_editor.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/preview_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/screencast_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/sidebar.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/status_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/panels/system_panel.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/region_overlay.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/screen_overlay.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/sensor_picker.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/splash.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/src/trcc/ui/qtgui/video_crop.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/__init__.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_elevate.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_imc_timings.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_linux_imc.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_spd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_windows_mem_disk.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_windows_permissions.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/adapters/system/test_windows_wmi_seam.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/conftest.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/mock_platform.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_api_routes.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_app_senders.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_architecture_boundaries.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_autostart_macos.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_autostart_windows.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_backend_finish.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_boot_animation_command.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_boot_animation_device.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_bulk_lcd_geometry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_clock.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_cloud_themes.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_commands.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_connect_failure_hints.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_connection_issues.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_control_center.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_daemon.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_data_install.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_dc_codec.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_dc_reader.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_device_catalog_smoke.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_device_recovery.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_device_sender.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_device_surface_matrix.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_display_rotation.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_display_tweaks.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_first_run_and_migration.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_gpu_preference.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_gpu_reader_prompt.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_gui_empty_state.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_gui_raise_existing.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_hid_lcd_geometry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_hotplug.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_hotplug_bsd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_hotplug_polling.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_hotplug_windows.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_i18n.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_integration_pipeline.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_ipc_server.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_ipc_windows_fallback.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_ipc_wire.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_lcd_panel_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_assets.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_display_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_handler_requires_app.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_panel_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_pm_registry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_remap.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_send.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_led_settings_commands.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_library_migration.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_ly_lcd_geometry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_mask_commands.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_mask_rendering.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_metrics_personalize.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_mock_reply_override.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_models.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_orientation_cloud_background.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_orientation_reload.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_overlay_clock.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_overlay_grid_adapter.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_overlay_resolve.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_packaging_entrypoints.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_platform_hw_probes.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_pyusb_find_seam.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_quickstart.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_render_led.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_run_setup_order.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_scsi_lcd_geometry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_selinux_install.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_send_color.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensor_chain.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensors_bsd.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensors_lhm_subprocess.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensors_macos.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensors_nvml.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_sensors_windows.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_settings_migration.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_shell.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_system_commands.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_system_resume.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_theme_persistence.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_theme_service.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_transports.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_ui_surfaces_smoke.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_variant_presentation_audit.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_video_cache.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_video_playback.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/test_wmi_gpu_fallback.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_device_presentation.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_lcd_presentation_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_led_metrics_format.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_led_zone_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_overlay_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_overlay_view_binding.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_preview_geometry.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_sensor_display.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_slideshow_model.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_theme_directories.py +0 -0
- {trcc_linux-9.7.7 → trcc_linux-9.7.9}/tests/ui/presentation/test_theme_local_binding.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: trcc-linux
|
|
3
|
-
Version: 9.7.
|
|
3
|
+
Version: 9.7.9
|
|
4
4
|
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
5
|
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
6
|
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
@@ -121,7 +121,7 @@ Description-Content-Type: text/markdown
|
|
|
121
121
|
[](https://buymeacoffee.com/Lexonight1)
|
|
122
122
|
[](https://ko-fi.com/lexonight1)
|
|
123
123
|
|
|
124
|
-
> Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Reborn627](https://github.com/Reborn627)**, **[@Mr-Renegade](https://github.com/Mr-Renegade)**, **[@knappstar](https://github.com/knappstar)**, **[@woebygon](https://github.com/woebygon)**, **[@Smokemic](https://github.com/Smokemic)**, **[@chava-byte](https://github.com/chava-byte)**, **[@nihilistqueen](https://github.com/nihilistqueen)**, **[@rhuggins573-crypto](https://github.com/rhuggins573-crypto)**, **[@unfirthman](https://github.com/unfirthman)**, **Glyn**, **dugalex**, **Dunvcpi**, and **
|
|
124
|
+
> Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Reborn627](https://github.com/Reborn627)**, **[@Mr-Renegade](https://github.com/Mr-Renegade)**, **[@knappstar](https://github.com/knappstar)**, **[@woebygon](https://github.com/woebygon)**, **[@Smokemic](https://github.com/Smokemic)**, **[@chava-byte](https://github.com/chava-byte)**, **[@nihilistqueen](https://github.com/nihilistqueen)**, **[@rhuggins573-crypto](https://github.com/rhuggins573-crypto)**, **[@unfirthman](https://github.com/unfirthman)**, **Glyn**, **dugalex**, **Dunvcpi**, **RichardK**, and **Rick** for the beers — you guys are legends.
|
|
125
125
|
|
|
126
126
|
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.
|
|
127
127
|
|
|
@@ -452,11 +452,17 @@ Special thanks to everyone who has contributed invaluable reports to this projec
|
|
|
452
452
|
|
|
453
453
|
**General** — **[wrightbyname](https://github.com/wrightbyname)** · **[mog199](https://github.com/mog199)** · **[jezzaw007](https://github.com/jezzaw007)** · **[sleeper14200](https://github.com/sleeper14200)** · **[kabi02](https://github.com/kabi02)** · **[david43](https://github.com/david43)** · **[Deltawolf](https://github.com/Deltawolf)** · **[JoshWrites](https://github.com/JoshWrites)** · **[jun3010me](https://github.com/jun3010me)** · **[Litsas](https://github.com/Litsas)** · **[MoltenMonster](https://github.com/MoltenMonster)** · **[ProfessorJoed](https://github.com/ProfessorJoed)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[unfirthman](https://github.com/unfirthman)** · **[ux370](https://github.com/ux370)** · **[vlad1](https://github.com/vlad1)** · **GlynL**
|
|
454
454
|
|
|
455
|
+
## Bug Reporters
|
|
456
|
+
|
|
457
|
+
Every name here took the time to open an issue and say "hey, this isn't working like I'd want it to." That isn't a complaint — it's a gift. Each one of these reports, on hardware I mostly don't own, is what made TRCC better for everyone who came after.
|
|
458
|
+
|
|
459
|
+
**[aaron-siegel](https://github.com/aaron-siegel)** · **[acioannina-wq](https://github.com/acioannina-wq)** · **[Alb3e3](https://github.com/Alb3e3)** · **[AnalogKnight](https://github.com/AnalogKnight)** · **[apj202-ops](https://github.com/apj202-ops)** · **[Archivist-lnx](https://github.com/Archivist-lnx)** · **[AussieMakerGeek](https://github.com/AussieMakerGeek)** · **[Axellarator](https://github.com/Axellarator)** · **[bariscetinbc](https://github.com/bariscetinbc)** · **[BAS-HARBERS](https://github.com/BAS-HARBERS)** · **[behold81](https://github.com/behold81)** · **[beret21](https://github.com/beret21)** · **[bipobuilt](https://github.com/bipobuilt)** · **[bktdrinal](https://github.com/bktdrinal)** · **[bookhaja-sys](https://github.com/bookhaja-sys)** · **[charlesbuihoanthien](https://github.com/charlesbuihoanthien)** · **[chava-byte](https://github.com/chava-byte)** · **[Civilgrain](https://github.com/Civilgrain)** · **[cs1171](https://github.com/cs1171)** · **[darrenwalter03-create](https://github.com/darrenwalter03-create)** · **[david43](https://github.com/david43)** · **[Deltawolf](https://github.com/Deltawolf)** · **[developer-yl](https://github.com/developer-yl)** · **[Dezuvo](https://github.com/Dezuvo)** · **[dking072](https://github.com/dking072)** · **[DomingosDSA](https://github.com/DomingosDSA)** · **[Duncpi](https://github.com/Duncpi)** · **[Edoardo-Rossi-EOS](https://github.com/Edoardo-Rossi-EOS)** · **[edoargo1996](https://github.com/edoargo1996)** · **[em73es](https://github.com/em73es)** · **[evultrole](https://github.com/evultrole)** · **[FLScales](https://github.com/FLScales)** · **[gadgetsboi](https://github.com/gadgetsboi)** · **[gizbo](https://github.com/gizbo)** · **[hexskrew](https://github.com/hexskrew)** · **[Iam-Default](https://github.com/Iam-Default)** · **[iansu1075](https://github.com/iansu1075)** · **[ImlostinIKEA](https://github.com/ImlostinIKEA)** · **[jaminmc](https://github.com/jaminmc)** · **[javisaman](https://github.com/javisaman)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jimmister1234-bit](https://github.com/jimmister1234-bit)** · **[JoshWrites](https://github.com/JoshWrites)** · **[juanito54jm-ux](https://github.com/juanito54jm-ux)** · **[jun3010me](https://github.com/jun3010me)** · **[k1w3l](https://github.com/k1w3l)** · **[kabi02](https://github.com/kabi02)** · **[knappstar](https://github.com/knappstar)** · **[Krummeltjie](https://github.com/Krummeltjie)** · **[lallemandgianni-boop](https://github.com/lallemandgianni-boop)** · **[LapisBrib](https://github.com/LapisBrib)** · **[Lcstyle](https://github.com/Lcstyle)** · **[Litsas](https://github.com/Litsas)** · **[lMyst1caL](https://github.com/lMyst1caL)** · **[loosethoughts19-hash](https://github.com/loosethoughts19-hash)** · **[Maschnievsky](https://github.com/Maschnievsky)** · **[Me-shok](https://github.com/Me-shok)** · **[megatronk2](https://github.com/megatronk2)** · **[michael-spinelli](https://github.com/michael-spinelli)** · **[Milrite](https://github.com/Milrite)** · **[MioHorizon](https://github.com/MioHorizon)** · **[mlamport](https://github.com/mlamport)** · **[mody446](https://github.com/mody446)** · **[mog199](https://github.com/mog199)** · **[MoltenMonster](https://github.com/MoltenMonster)** · **[Mr-Renegade](https://github.com/Mr-Renegade)** · **[muccaretroattiva](https://github.com/muccaretroattiva)** · **[N8ghtz](https://github.com/N8ghtz)** · **[Necropsi](https://github.com/Necropsi)** · **[OmenDjinn](https://github.com/OmenDjinn)** · **[OptimalKiller](https://github.com/OptimalKiller)** · **[oranura](https://github.com/oranura)** · **[Pallemz](https://github.com/Pallemz)** · **[PantherX12max](https://github.com/PantherX12max)** · **[pawbtism](https://github.com/pawbtism)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[ProfessorJoed](https://github.com/ProfessorJoed)** · **[questist](https://github.com/questist)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[raragundi](https://github.com/raragundi)** · **[ravensvoice](https://github.com/ravensvoice)** · **[Reborn627](https://github.com/Reborn627)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[Rizzzolo](https://github.com/Rizzzolo)** · **[ronny79privat](https://github.com/ronny79privat)** · **[RonyPony1234](https://github.com/RonyPony1234)** · **[satoru8](https://github.com/satoru8)** · **[Scifiguygaming](https://github.com/Scifiguygaming)** · **[scottphanson-bit](https://github.com/scottphanson-bit)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[Sharibo](https://github.com/Sharibo)** · **[sleeper14200](https://github.com/sleeper14200)** · **[stephendesmond1-cmd](https://github.com/stephendesmond1-cmd)** · **[Sublyme-n-Vybe](https://github.com/Sublyme-n-Vybe)** · **[Tavus1990](https://github.com/Tavus1990)** · **[Tavus90](https://github.com/Tavus90)** · **[Tee86](https://github.com/Tee86)** · **[tensaiteki](https://github.com/tensaiteki)** · **[TheJMS-NQ](https://github.com/TheJMS-NQ)** · **[TheManchineel](https://github.com/TheManchineel)** · **[thousandwheels-coder](https://github.com/thousandwheels-coder)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Tluxxa](https://github.com/Tluxxa)** · **[Tortillas-IT](https://github.com/Tortillas-IT)** · **[totub71](https://github.com/totub71)** · **[TowerIRL](https://github.com/TowerIRL)** · **[TuxLux40](https://github.com/TuxLux40)** · **[unfirthman](https://github.com/unfirthman)** · **[ux370](https://github.com/ux370)** · **[vlad1](https://github.com/vlad1)** · **[Vydon](https://github.com/Vydon)** · **[WillVinzant](https://github.com/WillVinzant)** · **[wobbegongus](https://github.com/wobbegongus)** · **[wrightbyname](https://github.com/wrightbyname)** · **[Xentrino](https://github.com/Xentrino)** · **[Zombie-hive](https://github.com/Zombie-hive)** · **[zypherz0920](https://github.com/zypherz0920)**
|
|
460
|
+
|
|
455
461
|
## Stars
|
|
456
462
|
|
|
457
463
|
Thanks to everyone who took a moment to star this project.
|
|
458
464
|
|
|
459
|
-
**[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[alicepolice](https://github.com/alicepolice)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[Arty-x-g](https://github.com/Arty-x-g)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[curttheg](https://github.com/curttheg)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[DavidKirkitadze](https://github.com/DavidKirkitadze)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[enricomarchesin](https://github.com/enricomarchesin)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[gupsterg](https://github.com/gupsterg)** · **[immenz](https://github.com/immenz)** · **[israelsz](https://github.com/israelsz)** · **[jamespo](https://github.com/jamespo)** · **[jaminmc](https://github.com/jaminmc)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[k1w3l](https://github.com/k1w3l)** · **[knappstar](https://github.com/knappstar)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[lotte25](https://github.com/lotte25)** · **[m-marcal](https://github.com/m-marcal)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[NostraTiepus](https://github.com/NostraTiepus)** · **[NuiQuant](https://github.com/NuiQuant)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[okrzanowska](https://github.com/okrzanowska)** · **[PantherX12max](https://github.com/PantherX12max)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[psyrie](https://github.com/psyrie)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Reborn627](https://github.com/Reborn627)** · **[Rehaell](https://github.com/Rehaell)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[RolandTaverner](https://github.com/RolandTaverner)** · **[rslater](https://github.com/rslater)** · **[satoru8](https://github.com/satoru8)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[sigizito](https://github.com/sigizito)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[sudo-st8less](https://github.com/sudo-st8less)** · **[Thymur](https://github.com/Thymur)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Torotin](https://github.com/Torotin)** · **[trizmark](https://github.com/trizmark)** · **[TuxLux40](https://github.com/TuxLux40)** · **[urbnywrt](https://github.com/urbnywrt)** · **[vindocel](https://github.com/vindocel)** · **[Viwyn](https://github.com/Viwyn)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
|
|
465
|
+
**[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[alicepolice](https://github.com/alicepolice)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[Arty-x-g](https://github.com/Arty-x-g)** · **[audacieuxnumber1](https://github.com/audacieuxnumber1)** · **[azrael1911](https://github.com/azrael1911)** · **[bbrriiaann97](https://github.com/bbrriiaann97)** · **[behold81](https://github.com/behold81)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[brook-cheng](https://github.com/brook-cheng)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cdh407](https://github.com/cdh407)** · **[cesarnr21](https://github.com/cesarnr21)** · **[chirox](https://github.com/chirox)** · **[codeflitting](https://github.com/codeflitting)** · **[CT-Actual](https://github.com/CT-Actual)** · **[curttheg](https://github.com/curttheg)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[DavidKirkitadze](https://github.com/DavidKirkitadze)** · **[Dezinger](https://github.com/Dezinger)** · **[Dezuvo](https://github.com/Dezuvo)** · **[eap5](https://github.com/eap5)** · **[eduu-dudu](https://github.com/eduu-dudu)** · **[emaspa](https://github.com/emaspa)** · **[enricomarchesin](https://github.com/enricomarchesin)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[guowc](https://github.com/guowc)** · **[gupsterg](https://github.com/gupsterg)** · **[huzky-v](https://github.com/huzky-v)** · **[hydrogen2005](https://github.com/hydrogen2005)** · **[immenz](https://github.com/immenz)** · **[israelsz](https://github.com/israelsz)** · **[jamespo](https://github.com/jamespo)** · **[jaminmc](https://github.com/jaminmc)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[JuanVargas](https://github.com/JuanVargas)** · **[JyeroRayguster404](https://github.com/JyeroRayguster404)** · **[k1w3l](https://github.com/k1w3l)** · **[KawalChlopa](https://github.com/KawalChlopa)** · **[kazhala](https://github.com/kazhala)** · **[knappstar](https://github.com/knappstar)** · **[kyle-tracy](https://github.com/kyle-tracy)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[Lfatua](https://github.com/Lfatua)** · **[llauer](https://github.com/llauer)** · **[lotte25](https://github.com/lotte25)** · **[m-marcal](https://github.com/m-marcal)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[monkky](https://github.com/monkky)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[N1sona](https://github.com/N1sona)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[nedimlisica](https://github.com/nedimlisica)** · **[nookpp](https://github.com/nookpp)** · **[NostraTiepus](https://github.com/NostraTiepus)** · **[NuiQuant](https://github.com/NuiQuant)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[okrzanowska](https://github.com/okrzanowska)** · **[PantherX12max](https://github.com/PantherX12max)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[psyrie](https://github.com/psyrie)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Reborn627](https://github.com/Reborn627)** · **[Rehaell](https://github.com/Rehaell)** · **[reinierjh](https://github.com/reinierjh)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[RolandTaverner](https://github.com/RolandTaverner)** · **[rslater](https://github.com/rslater)** · **[satoru8](https://github.com/satoru8)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[sigizito](https://github.com/sigizito)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[sudo-st8less](https://github.com/sudo-st8less)** · **[SunnyZorya23](https://github.com/SunnyZorya23)** · **[the-black-eagle](https://github.com/the-black-eagle)** · **[Thymur](https://github.com/Thymur)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Torotin](https://github.com/Torotin)** · **[trizmark](https://github.com/trizmark)** · **[TuxLux40](https://github.com/TuxLux40)** · **[urbnywrt](https://github.com/urbnywrt)** · **[vindocel](https://github.com/vindocel)** · **[Viwyn](https://github.com/Viwyn)** · **[Vydon](https://github.com/Vydon)** · **[wernerzsolt](https://github.com/wernerzsolt)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
|
|
460
466
|
|
|
461
467
|
## Faulkers
|
|
462
468
|
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
[](https://buymeacoffee.com/Lexonight1)
|
|
48
48
|
[](https://ko-fi.com/lexonight1)
|
|
49
49
|
|
|
50
|
-
> Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Reborn627](https://github.com/Reborn627)**, **[@Mr-Renegade](https://github.com/Mr-Renegade)**, **[@knappstar](https://github.com/knappstar)**, **[@woebygon](https://github.com/woebygon)**, **[@Smokemic](https://github.com/Smokemic)**, **[@chava-byte](https://github.com/chava-byte)**, **[@nihilistqueen](https://github.com/nihilistqueen)**, **[@rhuggins573-crypto](https://github.com/rhuggins573-crypto)**, **[@unfirthman](https://github.com/unfirthman)**, **Glyn**, **dugalex**, **Dunvcpi**, and **
|
|
50
|
+
> Huge thanks to **[@Xentrino](https://github.com/Xentrino)**, **[@javisaman](https://github.com/javisaman)**, **[@loosethoughts19-hash](https://github.com/loosethoughts19-hash)**, **[@Reborn627](https://github.com/Reborn627)**, **[@Mr-Renegade](https://github.com/Mr-Renegade)**, **[@knappstar](https://github.com/knappstar)**, **[@woebygon](https://github.com/woebygon)**, **[@Smokemic](https://github.com/Smokemic)**, **[@chava-byte](https://github.com/chava-byte)**, **[@nihilistqueen](https://github.com/nihilistqueen)**, **[@rhuggins573-crypto](https://github.com/rhuggins573-crypto)**, **[@unfirthman](https://github.com/unfirthman)**, **Glyn**, **dugalex**, **Dunvcpi**, **RichardK**, and **Rick** for the beers — you guys are legends.
|
|
51
51
|
|
|
52
52
|
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.
|
|
53
53
|
|
|
@@ -378,11 +378,17 @@ Special thanks to everyone who has contributed invaluable reports to this projec
|
|
|
378
378
|
|
|
379
379
|
**General** — **[wrightbyname](https://github.com/wrightbyname)** · **[mog199](https://github.com/mog199)** · **[jezzaw007](https://github.com/jezzaw007)** · **[sleeper14200](https://github.com/sleeper14200)** · **[kabi02](https://github.com/kabi02)** · **[david43](https://github.com/david43)** · **[Deltawolf](https://github.com/Deltawolf)** · **[JoshWrites](https://github.com/JoshWrites)** · **[jun3010me](https://github.com/jun3010me)** · **[Litsas](https://github.com/Litsas)** · **[MoltenMonster](https://github.com/MoltenMonster)** · **[ProfessorJoed](https://github.com/ProfessorJoed)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[unfirthman](https://github.com/unfirthman)** · **[ux370](https://github.com/ux370)** · **[vlad1](https://github.com/vlad1)** · **GlynL**
|
|
380
380
|
|
|
381
|
+
## Bug Reporters
|
|
382
|
+
|
|
383
|
+
Every name here took the time to open an issue and say "hey, this isn't working like I'd want it to." That isn't a complaint — it's a gift. Each one of these reports, on hardware I mostly don't own, is what made TRCC better for everyone who came after.
|
|
384
|
+
|
|
385
|
+
**[aaron-siegel](https://github.com/aaron-siegel)** · **[acioannina-wq](https://github.com/acioannina-wq)** · **[Alb3e3](https://github.com/Alb3e3)** · **[AnalogKnight](https://github.com/AnalogKnight)** · **[apj202-ops](https://github.com/apj202-ops)** · **[Archivist-lnx](https://github.com/Archivist-lnx)** · **[AussieMakerGeek](https://github.com/AussieMakerGeek)** · **[Axellarator](https://github.com/Axellarator)** · **[bariscetinbc](https://github.com/bariscetinbc)** · **[BAS-HARBERS](https://github.com/BAS-HARBERS)** · **[behold81](https://github.com/behold81)** · **[beret21](https://github.com/beret21)** · **[bipobuilt](https://github.com/bipobuilt)** · **[bktdrinal](https://github.com/bktdrinal)** · **[bookhaja-sys](https://github.com/bookhaja-sys)** · **[charlesbuihoanthien](https://github.com/charlesbuihoanthien)** · **[chava-byte](https://github.com/chava-byte)** · **[Civilgrain](https://github.com/Civilgrain)** · **[cs1171](https://github.com/cs1171)** · **[darrenwalter03-create](https://github.com/darrenwalter03-create)** · **[david43](https://github.com/david43)** · **[Deltawolf](https://github.com/Deltawolf)** · **[developer-yl](https://github.com/developer-yl)** · **[Dezuvo](https://github.com/Dezuvo)** · **[dking072](https://github.com/dking072)** · **[DomingosDSA](https://github.com/DomingosDSA)** · **[Duncpi](https://github.com/Duncpi)** · **[Edoardo-Rossi-EOS](https://github.com/Edoardo-Rossi-EOS)** · **[edoargo1996](https://github.com/edoargo1996)** · **[em73es](https://github.com/em73es)** · **[evultrole](https://github.com/evultrole)** · **[FLScales](https://github.com/FLScales)** · **[gadgetsboi](https://github.com/gadgetsboi)** · **[gizbo](https://github.com/gizbo)** · **[hexskrew](https://github.com/hexskrew)** · **[Iam-Default](https://github.com/Iam-Default)** · **[iansu1075](https://github.com/iansu1075)** · **[ImlostinIKEA](https://github.com/ImlostinIKEA)** · **[jaminmc](https://github.com/jaminmc)** · **[javisaman](https://github.com/javisaman)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jimmister1234-bit](https://github.com/jimmister1234-bit)** · **[JoshWrites](https://github.com/JoshWrites)** · **[juanito54jm-ux](https://github.com/juanito54jm-ux)** · **[jun3010me](https://github.com/jun3010me)** · **[k1w3l](https://github.com/k1w3l)** · **[kabi02](https://github.com/kabi02)** · **[knappstar](https://github.com/knappstar)** · **[Krummeltjie](https://github.com/Krummeltjie)** · **[lallemandgianni-boop](https://github.com/lallemandgianni-boop)** · **[LapisBrib](https://github.com/LapisBrib)** · **[Lcstyle](https://github.com/Lcstyle)** · **[Litsas](https://github.com/Litsas)** · **[lMyst1caL](https://github.com/lMyst1caL)** · **[loosethoughts19-hash](https://github.com/loosethoughts19-hash)** · **[Maschnievsky](https://github.com/Maschnievsky)** · **[Me-shok](https://github.com/Me-shok)** · **[megatronk2](https://github.com/megatronk2)** · **[michael-spinelli](https://github.com/michael-spinelli)** · **[Milrite](https://github.com/Milrite)** · **[MioHorizon](https://github.com/MioHorizon)** · **[mlamport](https://github.com/mlamport)** · **[mody446](https://github.com/mody446)** · **[mog199](https://github.com/mog199)** · **[MoltenMonster](https://github.com/MoltenMonster)** · **[Mr-Renegade](https://github.com/Mr-Renegade)** · **[muccaretroattiva](https://github.com/muccaretroattiva)** · **[N8ghtz](https://github.com/N8ghtz)** · **[Necropsi](https://github.com/Necropsi)** · **[OmenDjinn](https://github.com/OmenDjinn)** · **[OptimalKiller](https://github.com/OptimalKiller)** · **[oranura](https://github.com/oranura)** · **[Pallemz](https://github.com/Pallemz)** · **[PantherX12max](https://github.com/PantherX12max)** · **[pawbtism](https://github.com/pawbtism)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[ProfessorJoed](https://github.com/ProfessorJoed)** · **[questist](https://github.com/questist)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[raragundi](https://github.com/raragundi)** · **[ravensvoice](https://github.com/ravensvoice)** · **[Reborn627](https://github.com/Reborn627)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[Rizzzolo](https://github.com/Rizzzolo)** · **[ronny79privat](https://github.com/ronny79privat)** · **[RonyPony1234](https://github.com/RonyPony1234)** · **[satoru8](https://github.com/satoru8)** · **[Scifiguygaming](https://github.com/Scifiguygaming)** · **[scottphanson-bit](https://github.com/scottphanson-bit)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[Sharibo](https://github.com/Sharibo)** · **[sleeper14200](https://github.com/sleeper14200)** · **[stephendesmond1-cmd](https://github.com/stephendesmond1-cmd)** · **[Sublyme-n-Vybe](https://github.com/Sublyme-n-Vybe)** · **[Tavus1990](https://github.com/Tavus1990)** · **[Tavus90](https://github.com/Tavus90)** · **[Tee86](https://github.com/Tee86)** · **[tensaiteki](https://github.com/tensaiteki)** · **[TheJMS-NQ](https://github.com/TheJMS-NQ)** · **[TheManchineel](https://github.com/TheManchineel)** · **[thousandwheels-coder](https://github.com/thousandwheels-coder)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Tluxxa](https://github.com/Tluxxa)** · **[Tortillas-IT](https://github.com/Tortillas-IT)** · **[totub71](https://github.com/totub71)** · **[TowerIRL](https://github.com/TowerIRL)** · **[TuxLux40](https://github.com/TuxLux40)** · **[unfirthman](https://github.com/unfirthman)** · **[ux370](https://github.com/ux370)** · **[vlad1](https://github.com/vlad1)** · **[Vydon](https://github.com/Vydon)** · **[WillVinzant](https://github.com/WillVinzant)** · **[wobbegongus](https://github.com/wobbegongus)** · **[wrightbyname](https://github.com/wrightbyname)** · **[Xentrino](https://github.com/Xentrino)** · **[Zombie-hive](https://github.com/Zombie-hive)** · **[zypherz0920](https://github.com/zypherz0920)**
|
|
386
|
+
|
|
381
387
|
## Stars
|
|
382
388
|
|
|
383
389
|
Thanks to everyone who took a moment to star this project.
|
|
384
390
|
|
|
385
|
-
**[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[alicepolice](https://github.com/alicepolice)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[Arty-x-g](https://github.com/Arty-x-g)** · **[azrael1911](https://github.com/azrael1911)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cesarnr21](https://github.com/cesarnr21)** · **[codeflitting](https://github.com/codeflitting)** · **[curttheg](https://github.com/curttheg)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[DavidKirkitadze](https://github.com/DavidKirkitadze)** · **[eap5](https://github.com/eap5)** · **[emaspa](https://github.com/emaspa)** · **[enricomarchesin](https://github.com/enricomarchesin)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[gupsterg](https://github.com/gupsterg)** · **[immenz](https://github.com/immenz)** · **[israelsz](https://github.com/israelsz)** · **[jamespo](https://github.com/jamespo)** · **[jaminmc](https://github.com/jaminmc)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[k1w3l](https://github.com/k1w3l)** · **[knappstar](https://github.com/knappstar)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[lotte25](https://github.com/lotte25)** · **[m-marcal](https://github.com/m-marcal)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[NostraTiepus](https://github.com/NostraTiepus)** · **[NuiQuant](https://github.com/NuiQuant)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[okrzanowska](https://github.com/okrzanowska)** · **[PantherX12max](https://github.com/PantherX12max)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[psyrie](https://github.com/psyrie)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Reborn627](https://github.com/Reborn627)** · **[Rehaell](https://github.com/Rehaell)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[RolandTaverner](https://github.com/RolandTaverner)** · **[rslater](https://github.com/rslater)** · **[satoru8](https://github.com/satoru8)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[sigizito](https://github.com/sigizito)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[sudo-st8less](https://github.com/sudo-st8less)** · **[Thymur](https://github.com/Thymur)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Torotin](https://github.com/Torotin)** · **[trizmark](https://github.com/trizmark)** · **[TuxLux40](https://github.com/TuxLux40)** · **[urbnywrt](https://github.com/urbnywrt)** · **[vindocel](https://github.com/vindocel)** · **[Viwyn](https://github.com/Viwyn)** · **[Vydon](https://github.com/Vydon)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
|
|
391
|
+
**[akasvi](https://github.com/akasvi)** · **[alessa-lara](https://github.com/alessa-lara)** · **[alicepolice](https://github.com/alicepolice)** · **[ArcaneCoder404](https://github.com/ArcaneCoder404)** · **[Arty-x-g](https://github.com/Arty-x-g)** · **[audacieuxnumber1](https://github.com/audacieuxnumber1)** · **[azrael1911](https://github.com/azrael1911)** · **[bbrriiaann97](https://github.com/bbrriiaann97)** · **[behold81](https://github.com/behold81)** · **[betolink](https://github.com/betolink)** · **[bfesfbsbfesfbn](https://github.com/bfesfbsbfesfbn)** · **[bive242](https://github.com/bive242)** · **[brook-cheng](https://github.com/brook-cheng)** · **[BrunoLeguizamon05](https://github.com/BrunoLeguizamon05)** · **[cancos1](https://github.com/cancos1)** · **[capiazmi](https://github.com/capiazmi)** · **[cdh407](https://github.com/cdh407)** · **[cesarnr21](https://github.com/cesarnr21)** · **[chirox](https://github.com/chirox)** · **[codeflitting](https://github.com/codeflitting)** · **[CT-Actual](https://github.com/CT-Actual)** · **[curttheg](https://github.com/curttheg)** · **[dabombUSA](https://github.com/dabombUSA)** · **[damachine](https://github.com/damachine)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[david43](https://github.com/david43)** · **[DavidKirkitadze](https://github.com/DavidKirkitadze)** · **[Dezinger](https://github.com/Dezinger)** · **[Dezuvo](https://github.com/Dezuvo)** · **[eap5](https://github.com/eap5)** · **[eduu-dudu](https://github.com/eduu-dudu)** · **[emaspa](https://github.com/emaspa)** · **[enricomarchesin](https://github.com/enricomarchesin)** · **[falumamx](https://github.com/falumamx)** · **[Gdetrane](https://github.com/Gdetrane)** · **[greaseyjockey](https://github.com/greaseyjockey)** · **[guowc](https://github.com/guowc)** · **[gupsterg](https://github.com/gupsterg)** · **[huzky-v](https://github.com/huzky-v)** · **[hydrogen2005](https://github.com/hydrogen2005)** · **[immenz](https://github.com/immenz)** · **[israelsz](https://github.com/israelsz)** · **[jamespo](https://github.com/jamespo)** · **[jaminmc](https://github.com/jaminmc)** · **[jezzaw007](https://github.com/jezzaw007)** · **[jhlasnik](https://github.com/jhlasnik)** · **[jmo808](https://github.com/jmo808)** · **[Jorann](https://github.com/Jorann)** · **[JuanVargas](https://github.com/JuanVargas)** · **[JyeroRayguster404](https://github.com/JyeroRayguster404)** · **[k1w3l](https://github.com/k1w3l)** · **[KawalChlopa](https://github.com/KawalChlopa)** · **[kazhala](https://github.com/kazhala)** · **[knappstar](https://github.com/knappstar)** · **[kyle-tracy](https://github.com/kyle-tracy)** · **[Langustensorbet](https://github.com/Langustensorbet)** · **[Legendarycentaur](https://github.com/Legendarycentaur)** · **[Leonnaki](https://github.com/Leonnaki)** · **[Lfatua](https://github.com/Lfatua)** · **[llauer](https://github.com/llauer)** · **[lotte25](https://github.com/lotte25)** · **[m-marcal](https://github.com/m-marcal)** · **[mgaruccio](https://github.com/mgaruccio)** · **[michelle0812](https://github.com/michelle0812)** · **[mkogut](https://github.com/mkogut)** · **[monkky](https://github.com/monkky)** · **[mrsaraiva](https://github.com/mrsaraiva)** · **[N1sona](https://github.com/N1sona)** · **[narfel](https://github.com/narfel)** · **[nathanielhernandez](https://github.com/nathanielhernandez)** · **[nedimlisica](https://github.com/nedimlisica)** · **[nookpp](https://github.com/nookpp)** · **[NostraTiepus](https://github.com/NostraTiepus)** · **[NuiQuant](https://github.com/NuiQuant)** · **[oddajpierscien](https://github.com/oddajpierscien)** · **[okrzanowska](https://github.com/okrzanowska)** · **[PantherX12max](https://github.com/PantherX12max)** · **[Pewful2021](https://github.com/Pewful2021)** · **[Pikarz](https://github.com/Pikarz)** · **[psyrie](https://github.com/psyrie)** · **[qussaif10](https://github.com/qussaif10)** · **[qwerty22121998](https://github.com/qwerty22121998)** · **[Reborn627](https://github.com/Reborn627)** · **[Rehaell](https://github.com/Rehaell)** · **[reinierjh](https://github.com/reinierjh)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)** · **[riodevelop](https://github.com/riodevelop)** · **[RolandTaverner](https://github.com/RolandTaverner)** · **[rslater](https://github.com/rslater)** · **[satoru8](https://github.com/satoru8)** · **[saucymcbeef](https://github.com/saucymcbeef)** · **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)** · **[ShaunnyBwoy](https://github.com/ShaunnyBwoy)** · **[sigizito](https://github.com/sigizito)** · **[Smokemic](https://github.com/Smokemic)** · **[Spebelgenenst](https://github.com/Spebelgenenst)** · **[spiritofjon](https://github.com/spiritofjon)** · **[stephenvalente](https://github.com/stephenvalente)** · **[sudo-st8less](https://github.com/sudo-st8less)** · **[SunnyZorya23](https://github.com/SunnyZorya23)** · **[the-black-eagle](https://github.com/the-black-eagle)** · **[Thymur](https://github.com/Thymur)** · **[TimG-NL](https://github.com/TimG-NL)** · **[Torotin](https://github.com/Torotin)** · **[trizmark](https://github.com/trizmark)** · **[TuxLux40](https://github.com/TuxLux40)** · **[urbnywrt](https://github.com/urbnywrt)** · **[vindocel](https://github.com/vindocel)** · **[Viwyn](https://github.com/Viwyn)** · **[Vydon](https://github.com/Vydon)** · **[wernerzsolt](https://github.com/wernerzsolt)** · **[Xentrino](https://github.com/Xentrino)** · **[YahusRevus](https://github.com/YahusRevus)** · **[zhanghangt](https://github.com/zhanghangt)** · **[Ziusz](https://github.com/Ziusz)**
|
|
386
392
|
|
|
387
393
|
## Faulkers
|
|
388
394
|
|
|
@@ -19,6 +19,7 @@ from __future__ import annotations
|
|
|
19
19
|
|
|
20
20
|
import json
|
|
21
21
|
import logging
|
|
22
|
+
import os
|
|
22
23
|
import platform as py_platform
|
|
23
24
|
import sys
|
|
24
25
|
from dataclasses import dataclass, field
|
|
@@ -43,6 +44,7 @@ class DebugReport:
|
|
|
43
44
|
devices_error: str = ""
|
|
44
45
|
sensors: list[dict[str, str]] = field(default_factory=list)
|
|
45
46
|
sensors_error: str = ""
|
|
47
|
+
powercap: list[dict[str, str]] = field(default_factory=list)
|
|
46
48
|
settings_json: str = ""
|
|
47
49
|
settings_error: str = ""
|
|
48
50
|
health: HealthReport = field(default_factory=HealthReport)
|
|
@@ -57,6 +59,7 @@ class DebugReport:
|
|
|
57
59
|
sections.append(_render_kv("Paths", self.paths))
|
|
58
60
|
sections.append(_render_devices(self.devices, self.devices_error))
|
|
59
61
|
sections.append(_render_sensors(self.sensors, self.sensors_error))
|
|
62
|
+
sections.append(_render_powercap(self.powercap))
|
|
60
63
|
sections.append(_render_settings(self.settings_json, self.settings_error))
|
|
61
64
|
sections.append(_render_health(self.health))
|
|
62
65
|
sections.append(_render_log_tail(self.log_tail))
|
|
@@ -83,6 +86,7 @@ def build_debug_report(
|
|
|
83
86
|
path_table = _collect_paths(platform)
|
|
84
87
|
devices, devices_err = _collect_devices(platform)
|
|
85
88
|
sensors, sensors_err = _collect_sensors(platform)
|
|
89
|
+
powercap = _collect_powercap()
|
|
86
90
|
settings_text, settings_err = _read_settings_file(
|
|
87
91
|
settings_path or platform.paths().config_dir() / "config.json",
|
|
88
92
|
)
|
|
@@ -98,6 +102,7 @@ def build_debug_report(
|
|
|
98
102
|
devices_error=devices_err,
|
|
99
103
|
sensors=sensors,
|
|
100
104
|
sensors_error=sensors_err,
|
|
105
|
+
powercap=powercap,
|
|
101
106
|
settings_json=settings_text,
|
|
102
107
|
settings_error=settings_err,
|
|
103
108
|
health=health,
|
|
@@ -188,6 +193,45 @@ def _collect_sensors(
|
|
|
188
193
|
return rows, ""
|
|
189
194
|
|
|
190
195
|
|
|
196
|
+
def _collect_powercap() -> list[dict[str, str]]:
|
|
197
|
+
"""Probe the powercap RAPL nodes that CPU package power comes from (#194).
|
|
198
|
+
|
|
199
|
+
Answers the two questions a bare ``cpu:power = —`` can't: does the
|
|
200
|
+
``intel-rapl:*`` node exist at all (``intel_rapl_msr`` loaded?), and is
|
|
201
|
+
its ``energy_uj`` counter readable by us (root-only since CVE-2020-8694?).
|
|
202
|
+
Linux-only; other OSes get no rows (the section renders as N/A).
|
|
203
|
+
"""
|
|
204
|
+
log.debug("_collect_powercap: called")
|
|
205
|
+
if sys.platform != "linux":
|
|
206
|
+
return []
|
|
207
|
+
root = Path("/sys/class/powercap")
|
|
208
|
+
rows: list[dict[str, str]] = []
|
|
209
|
+
try:
|
|
210
|
+
domains = sorted(root.glob("intel-rapl:*"))
|
|
211
|
+
except OSError as e:
|
|
212
|
+
log.debug("_collect_powercap: glob failed: %s", e)
|
|
213
|
+
return []
|
|
214
|
+
for domain in domains:
|
|
215
|
+
# Top-level package domains only (intel-rapl:N), not subdomains.
|
|
216
|
+
if ":" in domain.name.split("intel-rapl:")[1]:
|
|
217
|
+
continue
|
|
218
|
+
try:
|
|
219
|
+
name = (domain / "name").read_text(encoding="utf-8").strip() \
|
|
220
|
+
if (domain / "name").is_file() else "?"
|
|
221
|
+
energy = domain / "energy_uj"
|
|
222
|
+
if not energy.exists():
|
|
223
|
+
readable = "no energy_uj"
|
|
224
|
+
else:
|
|
225
|
+
mode = energy.stat().st_mode & 0o777
|
|
226
|
+
ok = os.access(energy, os.R_OK)
|
|
227
|
+
readable = f"{'readable' if ok else 'ROOT-ONLY'} ({mode:#o})"
|
|
228
|
+
except OSError as e:
|
|
229
|
+
# A diagnostic must never abort the report — note the probe error.
|
|
230
|
+
name, readable = "?", f"probe error: {type(e).__name__}"
|
|
231
|
+
rows.append({"domain": domain.name, "name": name, "energy_uj": readable})
|
|
232
|
+
return rows
|
|
233
|
+
|
|
234
|
+
|
|
191
235
|
def _read_settings_file(path: Path) -> tuple[str, str]:
|
|
192
236
|
log.debug("_read_settings_file: path=%s", path)
|
|
193
237
|
if not path.is_file():
|
|
@@ -251,6 +295,18 @@ def _render_sensors(rows: list[dict[str, str]], error: str) -> str:
|
|
|
251
295
|
return f"## Sensors ({len(rows)})\n{body}"
|
|
252
296
|
|
|
253
297
|
|
|
298
|
+
def _render_powercap(rows: list[dict[str, str]]) -> str:
|
|
299
|
+
if not rows:
|
|
300
|
+
return ("## CPU power (RAPL)\n No intel-rapl powercap domains — "
|
|
301
|
+
"intel_rapl_msr not loaded (or N/A on this OS).\n"
|
|
302
|
+
" Run `trcc setup` to load it + grant read access (#194).")
|
|
303
|
+
body = "\n".join(
|
|
304
|
+
f" {r['domain']:16} {r['name']:12} energy_uj: {r['energy_uj']}"
|
|
305
|
+
for r in rows
|
|
306
|
+
)
|
|
307
|
+
return f"## CPU power (RAPL, {len(rows)} package domain(s))\n{body}"
|
|
308
|
+
|
|
309
|
+
|
|
254
310
|
def _render_settings(text: str, error: str) -> str:
|
|
255
311
|
if error and not text:
|
|
256
312
|
return f"## Settings\n {error}"
|
|
@@ -82,7 +82,14 @@ def install_matching_gpu_extras(vendors: set[str],
|
|
|
82
82
|
if not needed:
|
|
83
83
|
log.info("No GPU-specific Python libs required for: %s", sorted(vendors))
|
|
84
84
|
return 0
|
|
85
|
-
|
|
85
|
+
# `pip install --user` is REFUSED inside a virtualenv ("User site-packages
|
|
86
|
+
# are not visible in this virtualenv") and aborts setup — exactly what the
|
|
87
|
+
# bundled-venv .deb hits (#161). Install into the venv directly; only a
|
|
88
|
+
# non-venv system Python needs --user (writes to the user's site-packages,
|
|
89
|
+
# no root). Same detection as InstallGpuReader.
|
|
90
|
+
in_venv = sys.prefix != sys.base_prefix
|
|
91
|
+
user_flag = [] if in_venv else ["--user"]
|
|
92
|
+
cmd = [sys.executable, "-m", "pip", "install", *user_flag, *needed]
|
|
86
93
|
log.info("Installing GPU sensor support: %s", needed)
|
|
87
94
|
if dry_run:
|
|
88
95
|
log.info("(dry-run) would run: %s", " ".join(cmd))
|
|
@@ -34,6 +34,11 @@ _HWMON_ROOT = Path("/sys/class/hwmon")
|
|
|
34
34
|
_DRM_ROOT = Path("/sys/class/drm")
|
|
35
35
|
_POWERCAP_ROOT = Path("/sys/class/powercap")
|
|
36
36
|
|
|
37
|
+
# When RAPL discovery comes up empty (driver not loaded, or energy_uj still
|
|
38
|
+
# root-only), re-scan at most this often so CPU power appears without an app
|
|
39
|
+
# restart once the user runs `trcc setup` to load the module / grant read.
|
|
40
|
+
_RAPL_REDISCOVER_INTERVAL_S = 30.0
|
|
41
|
+
|
|
37
42
|
_CPU_DRIVERS = ("coretemp", "k10temp", "zenpower")
|
|
38
43
|
_AMD_DRIVER = "amdgpu"
|
|
39
44
|
_INTEL_DRIVERS = ("i915", "xe")
|
|
@@ -129,12 +134,13 @@ class _RaplCpuPower:
|
|
|
129
134
|
``prev`` and report garbage watts.
|
|
130
135
|
"""
|
|
131
136
|
|
|
132
|
-
__slots__ = ("_last", "_lock", "_paths")
|
|
137
|
+
__slots__ = ("_last", "_lock", "_next_rediscover", "_paths")
|
|
133
138
|
|
|
134
139
|
def __init__(self) -> None:
|
|
135
140
|
self._paths = self._discover()
|
|
136
141
|
self._last: tuple[float, float] | None = None # (sum_uj, monotonic)
|
|
137
142
|
self._lock = threading.Lock()
|
|
143
|
+
self._next_rediscover = 0.0
|
|
138
144
|
|
|
139
145
|
@staticmethod
|
|
140
146
|
def _discover() -> list[Path]:
|
|
@@ -163,15 +169,29 @@ class _RaplCpuPower:
|
|
|
163
169
|
log.info("RAPL CPU power: %d readable package domain(s)", len(paths))
|
|
164
170
|
return paths
|
|
165
171
|
|
|
172
|
+
def _maybe_rediscover(self) -> None:
|
|
173
|
+
"""Re-scan for RAPL paths when we have none — covers a driver load or
|
|
174
|
+
permission grant that happened after construction (the user just ran
|
|
175
|
+
``trcc setup``), so CPU power appears without restarting the app
|
|
176
|
+
(#194). Throttled so the empty case stays cheap. Caller holds
|
|
177
|
+
``_lock``."""
|
|
178
|
+
now = time.monotonic()
|
|
179
|
+
if now < self._next_rediscover:
|
|
180
|
+
return
|
|
181
|
+
self._next_rediscover = now + _RAPL_REDISCOVER_INTERVAL_S
|
|
182
|
+
self._paths = self._discover()
|
|
183
|
+
|
|
166
184
|
def read(self) -> float | None:
|
|
167
185
|
"""Watts since the last read, or None (first read / wrap / locked).
|
|
168
186
|
|
|
169
187
|
Thread-safe: the read-delta-update runs under ``_lock`` so
|
|
170
188
|
concurrent callers can't interleave their energy/time samples.
|
|
171
189
|
"""
|
|
172
|
-
if not self._paths:
|
|
173
|
-
return None
|
|
174
190
|
with self._lock:
|
|
191
|
+
if not self._paths:
|
|
192
|
+
self._maybe_rediscover()
|
|
193
|
+
if not self._paths:
|
|
194
|
+
return None
|
|
175
195
|
total = 0.0
|
|
176
196
|
for path in self._paths:
|
|
177
197
|
val = _read_float(path)
|
|
@@ -142,10 +142,15 @@ class XdgDesktopAutostart(AutostartManager):
|
|
|
142
142
|
|
|
143
143
|
The second form is robust across pipx / venv / system-python
|
|
144
144
|
installs because ``sys.executable`` is always the right interpreter.
|
|
145
|
+
|
|
146
|
+
``--resume`` makes the autostarted instance start hidden in the
|
|
147
|
+
system tray (restoring the last-used theme) instead of popping a
|
|
148
|
+
window on every login — the long-standing autostart behaviour that
|
|
149
|
+
regressed when the flag was dropped (#201).
|
|
145
150
|
"""
|
|
146
151
|
if (resolved := shutil.which("trcc")):
|
|
147
|
-
return f"{resolved} gui"
|
|
148
|
-
return f"{sys.executable} -m trcc gui"
|
|
152
|
+
return f"{resolved} gui --resume"
|
|
153
|
+
return f"{sys.executable} -m trcc gui --resume"
|
|
149
154
|
|
|
150
155
|
|
|
151
156
|
# =========================================================================
|
|
@@ -42,6 +42,23 @@ log = logging.getLogger(__name__)
|
|
|
42
42
|
_RULES_PATH = Path("/etc/udev/rules.d/99-trcc-lcd.rules")
|
|
43
43
|
_MODPROBE_PATH = Path("/etc/modprobe.d/trcc-lcd.conf")
|
|
44
44
|
_MODULES_LOAD_PATH = Path("/etc/modules-load.d/trcc-sg.conf")
|
|
45
|
+
_MODULES_LOAD_RAPL_PATH = Path("/etc/modules-load.d/trcc-rapl.conf")
|
|
46
|
+
|
|
47
|
+
# `intel_rapl_msr` exposes the powercap RAPL energy counter on BOTH Intel and
|
|
48
|
+
# AMD (Zen) — the vendor-agnostic `/sys/class/powercap/intel-rapl:*` node trcc
|
|
49
|
+
# reads CPU package watts from (#194).
|
|
50
|
+
_RAPL_MODULE = "intel_rapl_msr"
|
|
51
|
+
|
|
52
|
+
# CPU package power read-grant. `energy_uj` is root-only since CVE-2020-8694
|
|
53
|
+
# (PLATYPUS), so without this trcc can't report CPU watts on most distros.
|
|
54
|
+
# Scoped to ONLY the energy counter; reverted by deleting the rules file.
|
|
55
|
+
_POWERCAP_RULES = (
|
|
56
|
+
"# CPU package power (RAPL) — make energy_uj readable without root so\n"
|
|
57
|
+
"# trcc can report CPU watts (root-only since CVE-2020-8694). Scoped to\n"
|
|
58
|
+
"# the energy counter only; delete this file to revert.\n"
|
|
59
|
+
'SUBSYSTEM=="powercap", KERNEL=="intel-rapl:*", '
|
|
60
|
+
'RUN+="/bin/chmod 0444 /sys$devpath/energy_uj"\n'
|
|
61
|
+
)
|
|
45
62
|
|
|
46
63
|
|
|
47
64
|
# Wire → which kernel subsystems grant access for that protocol.
|
|
@@ -86,7 +103,8 @@ def build_udev_rules() -> str:
|
|
|
86
103
|
f'ATTR{{power/autosuspend_delay_ms}}="10000"'
|
|
87
104
|
)
|
|
88
105
|
lines.append("")
|
|
89
|
-
|
|
106
|
+
body = "\n".join(lines).rstrip() + "\n"
|
|
107
|
+
return f"{body}\n{_POWERCAP_RULES}"
|
|
90
108
|
|
|
91
109
|
|
|
92
110
|
def build_modprobe_conf() -> str:
|
|
@@ -128,6 +146,9 @@ def install(dry_run: bool = False) -> int:
|
|
|
128
146
|
print(modprobe, end="")
|
|
129
147
|
print(f"\n--- would write {_MODULES_LOAD_PATH} ---")
|
|
130
148
|
print("sg\n")
|
|
149
|
+
print(f"--- would write {_MODULES_LOAD_RAPL_PATH} ---")
|
|
150
|
+
print(f"{_RAPL_MODULE}\n")
|
|
151
|
+
print(f"--- would modprobe {_RAPL_MODULE} (CPU power, now) ---")
|
|
131
152
|
return 0
|
|
132
153
|
|
|
133
154
|
if os.geteuid() != 0:
|
|
@@ -143,10 +164,22 @@ def install(dry_run: bool = False) -> int:
|
|
|
143
164
|
log.info("Wrote %s", _MODPROBE_PATH)
|
|
144
165
|
_write_atomic(_MODULES_LOAD_PATH, "sg\n")
|
|
145
166
|
log.info("Wrote %s (auto-load sg kernel module)", _MODULES_LOAD_PATH)
|
|
167
|
+
_write_atomic(_MODULES_LOAD_RAPL_PATH, f"{_RAPL_MODULE}\n")
|
|
168
|
+
log.info("Wrote %s (auto-load %s for CPU power)",
|
|
169
|
+
_MODULES_LOAD_RAPL_PATH, _RAPL_MODULE)
|
|
146
170
|
except OSError:
|
|
147
171
|
log.exception("Could not write udev/modprobe config")
|
|
148
172
|
return 1
|
|
149
173
|
|
|
174
|
+
# Load the RAPL module now so CPU power works without a reboot — the
|
|
175
|
+
# modules-load.d entry above only takes effect on next boot. Best-effort:
|
|
176
|
+
# a kernel without the module (or a VM) just leaves CPU power unavailable.
|
|
177
|
+
try:
|
|
178
|
+
subprocess.run(["modprobe", _RAPL_MODULE], check=False)
|
|
179
|
+
except (OSError, subprocess.SubprocessError):
|
|
180
|
+
log.warning("modprobe %s failed — CPU power may need a reboot",
|
|
181
|
+
_RAPL_MODULE)
|
|
182
|
+
|
|
150
183
|
return _reload_udev()
|
|
151
184
|
|
|
152
185
|
|
|
@@ -166,7 +199,10 @@ def _reload_udev() -> int:
|
|
|
166
199
|
for cmd in (["udevadm", "control", "--reload-rules"],
|
|
167
200
|
["udevadm", "trigger", "--subsystem-match=usb"],
|
|
168
201
|
["udevadm", "trigger", "--subsystem-match=scsi_generic"],
|
|
169
|
-
["udevadm", "trigger", "--subsystem-match=hidraw"]
|
|
202
|
+
["udevadm", "trigger", "--subsystem-match=hidraw"],
|
|
203
|
+
# Re-fire the RAPL read-grant on the already-present
|
|
204
|
+
# powercap nodes so CPU power works without a reboot (#194).
|
|
205
|
+
["udevadm", "trigger", "--subsystem-match=powercap"]):
|
|
170
206
|
try:
|
|
171
207
|
result = subprocess.run(cmd, check=False)
|
|
172
208
|
except (OSError, subprocess.SubprocessError):
|
|
@@ -467,9 +467,16 @@ class LinuxPlatform(Platform):
|
|
|
467
467
|
rc_udev = install_udev_rules(dry_run=False)
|
|
468
468
|
vendors = detect_gpu_vendors()
|
|
469
469
|
log.info("Detected GPU vendors: %s", sorted(vendors) or "none")
|
|
470
|
+
# GPU sensor extras are a BONUS — device access (udev) is the real job.
|
|
471
|
+
# A pip hiccup here (e.g. an offline box) must NOT make setup report
|
|
472
|
+
# total failure, which scared users into thinking nothing worked (#161).
|
|
470
473
|
rc_gpu = install_matching_gpu_extras(vendors, dry_run=False)
|
|
474
|
+
if rc_gpu:
|
|
475
|
+
log.warning("GPU sensor extras install returned %d — device setup "
|
|
476
|
+
"is unaffected; GPU readings stay unavailable until the "
|
|
477
|
+
"reader installs", rc_gpu)
|
|
471
478
|
rc_selinux = install_selinux_policy(dry_run=False)
|
|
472
|
-
return rc_udev or
|
|
479
|
+
return rc_udev or rc_selinux
|
|
473
480
|
|
|
474
481
|
def check_permissions(self) -> list[str]:
|
|
475
482
|
"""Return user-facing warnings if udev rules are missing, etc."""
|
|
@@ -698,10 +698,20 @@ class _DeviceRenderObserver:
|
|
|
698
698
|
# display IS the live metric, no theme involved). LED was
|
|
699
699
|
# dropped from this list at the cutover, which is why LED panels
|
|
700
700
|
# stopped updating on sensor ticks.
|
|
701
|
+
#
|
|
702
|
+
# BUT skip any LED device the animation loop is already ticking:
|
|
703
|
+
# it re-renders that device every 150 ms off the same cached
|
|
704
|
+
# sample, so an extra render here just advances the effect timer
|
|
705
|
+
# one more step right as the metric updates — a brief hiccup the
|
|
706
|
+
# user sees as the numbers "glitching while updating" (#202). The
|
|
707
|
+
# loop owns the cadence for animating devices; static LED devices
|
|
708
|
+
# (not ticked by the loop) still need this sensor-driven refresh.
|
|
709
|
+
animating = set(self._app.led_animation_loop.animating_keys())
|
|
701
710
|
keys = [
|
|
702
711
|
k for k, d in self._app.devices.items()
|
|
703
712
|
if d.is_connected
|
|
704
713
|
and (d.is_led or k in self._app.active_themes)
|
|
714
|
+
and k not in animating
|
|
705
715
|
]
|
|
706
716
|
for key in keys:
|
|
707
717
|
device = self._app.devices.get(key)
|
|
@@ -339,11 +339,22 @@ class RenderLed(Command[LedColorsResult]):
|
|
|
339
339
|
zone_map=zone_map,
|
|
340
340
|
metric_sources=display.zone_metric_sources,
|
|
341
341
|
led_count=segment_count,
|
|
342
|
+
zone_color_groups=display.zone_color_groups,
|
|
342
343
|
)
|
|
343
344
|
else:
|
|
344
345
|
colors = app.led_effects.tick(
|
|
345
346
|
effective_settings, runtime, current,
|
|
346
347
|
led_count=segment_count,
|
|
348
|
+
color_groups=display.color_groups,
|
|
349
|
+
)
|
|
350
|
+
|
|
351
|
+
# Styles with a decoration strip (LF10/LF12) keep the strip's
|
|
352
|
+
# spatial rainbow but collapse each metric digit to one color so the
|
|
353
|
+
# number reads cohesively (#193) — a post-effect pass that leaves
|
|
354
|
+
# every non-digit LED on its per-LED spread.
|
|
355
|
+
if display.digit_groups is not None:
|
|
356
|
+
colors = app.led_effects.cohere_digit_groups(
|
|
357
|
+
colors, display.digit_groups,
|
|
347
358
|
)
|
|
348
359
|
|
|
349
360
|
# One writer: bake global brightness into the rendered signal so the
|