trcc-linux 9.6.4__tar.gz → 9.7.0__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.0/.gitignore +121 -0
- trcc_linux-9.7.0/PKG-INFO +470 -0
- trcc_linux-9.7.0/pyproject.toml +270 -0
- trcc_linux-9.7.0/src/trcc/__init__.py +21 -0
- trcc_linux-9.7.0/src/trcc/__main__.py +112 -0
- trcc_linux-9.7.0/src/trcc/__version__.py +4 -0
- trcc_linux-9.7.0/src/trcc/_boot.py +99 -0
- trcc_linux-9.7.0/src/trcc/_entry.py +17 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/__init__.py +79 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/bulk_lcd.py +223 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/hid_lcd.py +360 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/led.py +436 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/ly_lcd.py +211 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/scsi_lcd.py +335 -0
- trcc_linux-9.7.0/src/trcc/adapters/device/transport.py +352 -0
- trcc_linux-9.7.0/src/trcc/adapters/diagnostics/__init__.py +1 -0
- trcc_linux-9.7.0/src/trcc/adapters/diagnostics/debug_report.py +281 -0
- trcc_linux-9.7.0/src/trcc/adapters/diagnostics/doctor.py +57 -0
- trcc_linux-9.7.0/src/trcc/adapters/diagnostics/health.py +335 -0
- trcc_linux-9.7.0/src/trcc/adapters/infra/__init__.py +1 -0
- trcc_linux-9.7.0/src/trcc/adapters/infra/logging.py +142 -0
- trcc_linux-9.7.0/src/trcc/adapters/infra/network.py +31 -0
- trcc_linux-9.7.0/src/trcc/adapters/infra/sysinfo_config.py +363 -0
- trcc_linux-9.7.0/src/trcc/adapters/render/qt.py +349 -0
- trcc_linux-9.7.0/src/trcc/adapters/repo/__init__.py +1 -0
- trcc_linux-9.7.0/src/trcc/adapters/repo/data_install.py +233 -0
- trcc_linux-9.7.0/src/trcc/adapters/repo/github_releases.py +74 -0
- trcc_linux-9.7.0/src/trcc/adapters/repo/http.py +53 -0
- trcc_linux-9.7.0/src/trcc/adapters/screencast/__init__.py +10 -0
- trcc_linux-9.7.0/src/trcc/adapters/screencast/qt.py +166 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_hwinfo.py +559 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_lhm.py +567 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_macos_hid.py +524 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_msacpi.py +133 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_powermetrics.py +411 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_smc.py +506 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/_sysctl.py +274 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/aggregator.py +368 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/bsd.py +54 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/chain.py +163 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/gpu_detect.py +95 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/hwmon.py +463 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/macos.py +384 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/nvml.py +173 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/psutil_sources.py +158 -0
- trcc_linux-9.7.0/src/trcc/adapters/sensors/windows.py +77 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/__init__.py +74 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/_autostart.py +338 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/_devd.py +158 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/_hotplug.py +790 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/_macos_setup.py +167 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/_udev.py +191 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/_winusb.py +136 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/bsd.py +331 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/linux.py +716 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/macos.py +337 -0
- trcc_linux-9.7.0/src/trcc/adapters/system/windows.py +585 -0
- trcc_linux-9.7.0/src/trcc/adapters/theme/__init__.py +1 -0
- trcc_linux-9.7.0/src/trcc/adapters/theme/cloud.py +208 -0
- trcc_linux-9.7.0/src/trcc/app.py +426 -0
- trcc_linux-9.7.0/src/trcc/core/_colors.py +42 -0
- trcc_linux-9.7.0/src/trcc/core/_safe.py +121 -0
- trcc_linux-9.7.0/src/trcc/core/_version.py +45 -0
- trcc_linux-9.7.0/src/trcc/core/commands/__init__.py +242 -0
- trcc_linux-9.7.0/src/trcc/core/commands/_base.py +42 -0
- trcc_linux-9.7.0/src/trcc/core/commands/_helpers.py +361 -0
- trcc_linux-9.7.0/src/trcc/core/commands/device.py +1658 -0
- trcc_linux-9.7.0/src/trcc/core/commands/led.py +788 -0
- trcc_linux-9.7.0/src/trcc/core/commands/system.py +993 -0
- trcc_linux-9.7.0/src/trcc/core/commands/theme.py +1761 -0
- trcc_linux-9.7.0/src/trcc/core/device_recovery.py +205 -0
- trcc_linux-9.7.0/src/trcc/core/errors.py +65 -0
- trcc_linux-9.7.0/src/trcc/core/events.py +388 -0
- trcc_linux-9.7.0/src/trcc/core/i18n.py +2177 -0
- trcc_linux-9.7.0/src/trcc/core/led_models.py +356 -0
- trcc_linux-9.7.0/src/trcc/core/led_protocol.py +327 -0
- trcc_linux-9.7.0/src/trcc/core/models.py +1054 -0
- trcc_linux-9.7.0/src/trcc/core/ports.py +834 -0
- trcc_linux-9.7.0/src/trcc/core/protocol.py +239 -0
- trcc_linux-9.7.0/src/trcc/core/registry.py +171 -0
- trcc_linux-9.7.0/src/trcc/core/results.py +706 -0
- trcc_linux-9.7.0/src/trcc/core/variants.py +220 -0
- trcc_linux-9.7.0/src/trcc/daemon.py +160 -0
- trcc_linux-9.7.0/src/trcc/ipc.py +708 -0
- trcc_linux-9.7.0/src/trcc/proxy.py +57 -0
- trcc_linux-9.7.0/src/trcc/services/_ansi.py +93 -0
- trcc_linux-9.7.0/src/trcc/services/_clock.py +114 -0
- trcc_linux-9.7.0/src/trcc/services/_dc.py +740 -0
- trcc_linux-9.7.0/src/trcc/services/audio.py +142 -0
- trcc_linux-9.7.0/src/trcc/services/cloud_theme.py +188 -0
- trcc_linux-9.7.0/src/trcc/services/data_install.py +98 -0
- trcc_linux-9.7.0/src/trcc/services/display.py +1216 -0
- trcc_linux-9.7.0/src/trcc/services/first_run.py +80 -0
- trcc_linux-9.7.0/src/trcc/services/keepalive.py +68 -0
- trcc_linux-9.7.0/src/trcc/services/led_effects.py +377 -0
- trcc_linux-9.7.0/src/trcc/services/led_segment.py +889 -0
- trcc_linux-9.7.0/src/trcc/services/media.py +479 -0
- trcc_linux-9.7.0/src/trcc/services/metrics_loop.py +232 -0
- trcc_linux-9.7.0/src/trcc/services/metrics_personalize.py +80 -0
- trcc_linux-9.7.0/src/trcc/services/migration.py +105 -0
- trcc_linux-9.7.0/src/trcc/services/overlay.py +314 -0
- trcc_linux-9.7.0/src/trcc/services/quickstart.py +160 -0
- trcc_linux-9.7.0/src/trcc/services/settings.py +822 -0
- trcc_linux-9.7.0/src/trcc/services/slideshow.py +105 -0
- trcc_linux-9.7.0/src/trcc/services/theme.py +811 -0
- trcc_linux-9.7.0/src/trcc/services/video_cache.py +67 -0
- trcc_linux-9.7.0/src/trcc/services/video_export.py +273 -0
- trcc_linux-9.7.0/src/trcc/ui/api/_shared.py +782 -0
- trcc_linux-9.7.0/src/trcc/ui/api/config.py +102 -0
- trcc_linux-9.7.0/src/trcc/ui/api/devices.py +59 -0
- trcc_linux-9.7.0/src/trcc/ui/api/display.py +1090 -0
- trcc_linux-9.7.0/src/trcc/ui/api/led.py +404 -0
- trcc_linux-9.7.0/src/trcc/ui/api/main.py +230 -0
- trcc_linux-9.7.0/src/trcc/ui/api/schemas.py +961 -0
- trcc_linux-9.7.0/src/trcc/ui/api/system.py +372 -0
- trcc_linux-9.7.0/src/trcc/ui/api/theme.py +440 -0
- trcc_linux-9.7.0/src/trcc/ui/api/trcc.py +86 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/_ctx.py +64 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/config.py +101 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/device.py +112 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/display.py +1105 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/led.py +527 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/main.py +480 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/shell.py +153 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/system.py +529 -0
- trcc_linux-9.7.0/src/trcc/ui/cli/theme.py +400 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/__init__.py +158 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/_overlay_grid_adapter.py +146 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/_ui_state.py +164 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/assets.py +230 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/base.py +834 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/base_handler.py +100 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/bus_bridge.py +112 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/color_and_add_panels.py +320 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/constants.py +453 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/display_mode_panels.py +700 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/eyedropper.py +185 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/lcd_handler.py +1356 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/led_handler.py +337 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/overlay_element.py +239 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/overlay_grid.py +314 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/pipewire_capture.py +403 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/screen_capture.py +314 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/splash.py +214 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/trcc_app.py +2387 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_about.py +618 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_activity_sidebar.py +225 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_color_wheel.py +272 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_device.py +432 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_image_cut.py +397 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_info_module.py +139 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_led_control.py +1435 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_screen_led.py +680 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_sensor_picker.py +320 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_system_info.py +700 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_local.py +471 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_mask.py +303 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_setting.py +342 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_theme_web.py +311 -0
- trcc_linux-9.7.0/src/trcc/ui/gui/uc_video_cut.py +662 -0
- trcc_linux-9.7.0/src/trcc/ui/qapp.py +59 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/__init__.py +12 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/app.py +222 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/assets.py +120 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/base.py +146 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/bus_bridge.py +78 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/color_wheel.py +163 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/device_picker.py +187 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/eyedropper.py +143 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/image_crop.py +372 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/__init__.py +33 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/about_panel.py +74 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/cloud_theme_browser.py +177 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/configuration_panel.py +342 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/device_panel.py +90 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/display_panel.py +190 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/__init__.py +34 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/_base.py +77 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/advanced_tab.py +253 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/color_tab.py +211 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/mode_tab.py +118 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/segment_tab.py +125 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led/zone_tab.py +339 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/led_panel.py +172 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/local_theme_browser.py +397 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/mask_browser.py +310 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/overlay_editor.py +473 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/preview_panel.py +174 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/screencast_panel.py +283 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/sidebar.py +109 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/status_panel.py +150 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/panels/system_panel.py +272 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/region_overlay.py +128 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/screen_overlay.py +161 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/sensor_picker.py +226 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/splash.py +110 -0
- trcc_linux-9.7.0/src/trcc/ui/qtgui/video_crop.py +512 -0
- trcc_linux-9.7.0/tests/conftest.py +376 -0
- trcc_linux-9.7.0/tests/test_api_routes.py +1072 -0
- trcc_linux-9.7.0/tests/test_autostart.py +85 -0
- trcc_linux-9.7.0/tests/test_autostart_macos.py +184 -0
- trcc_linux-9.7.0/tests/test_autostart_windows.py +236 -0
- trcc_linux-9.7.0/tests/test_backend_finish.py +266 -0
- trcc_linux-9.7.0/tests/test_boot_animation_command.py +250 -0
- trcc_linux-9.7.0/tests/test_boot_animation_device.py +301 -0
- trcc_linux-9.7.0/tests/test_bulk_lcd_geometry.py +225 -0
- trcc_linux-9.7.0/tests/test_cli_commands.py +1038 -0
- trcc_linux-9.7.0/tests/test_clock.py +129 -0
- trcc_linux-9.7.0/tests/test_cloud_themes.py +165 -0
- trcc_linux-9.7.0/tests/test_commands.py +58 -0
- trcc_linux-9.7.0/tests/test_control_center.py +224 -0
- trcc_linux-9.7.0/tests/test_dc_codec.py +253 -0
- trcc_linux-9.7.0/tests/test_dc_reader.py +319 -0
- trcc_linux-9.7.0/tests/test_diagnostics.py +212 -0
- trcc_linux-9.7.0/tests/test_display_rotation.py +375 -0
- trcc_linux-9.7.0/tests/test_display_tweaks.py +188 -0
- trcc_linux-9.7.0/tests/test_first_run_and_migration.py +61 -0
- trcc_linux-9.7.0/tests/test_gui_panels.py +1046 -0
- trcc_linux-9.7.0/tests/test_hid_lcd_geometry.py +375 -0
- trcc_linux-9.7.0/tests/test_hotplug.py +222 -0
- trcc_linux-9.7.0/tests/test_hotplug_bsd.py +166 -0
- trcc_linux-9.7.0/tests/test_hotplug_polling.py +210 -0
- trcc_linux-9.7.0/tests/test_hotplug_windows.py +146 -0
- trcc_linux-9.7.0/tests/test_i18n.py +148 -0
- trcc_linux-9.7.0/tests/test_integration_pipeline.py +53 -0
- trcc_linux-9.7.0/tests/test_ipc_server.py +243 -0
- trcc_linux-9.7.0/tests/test_ipc_wire.py +218 -0
- trcc_linux-9.7.0/tests/test_led_effects.py +325 -0
- trcc_linux-9.7.0/tests/test_led_pm_registry.py +281 -0
- trcc_linux-9.7.0/tests/test_led_remap.py +134 -0
- trcc_linux-9.7.0/tests/test_led_send.py +183 -0
- trcc_linux-9.7.0/tests/test_led_settings_commands.py +155 -0
- trcc_linux-9.7.0/tests/test_library_migration.py +108 -0
- trcc_linux-9.7.0/tests/test_ly_lcd_geometry.py +190 -0
- trcc_linux-9.7.0/tests/test_mask_commands.py +251 -0
- trcc_linux-9.7.0/tests/test_mask_rendering.py +319 -0
- trcc_linux-9.7.0/tests/test_metrics_personalize.py +136 -0
- trcc_linux-9.7.0/tests/test_models.py +21 -0
- trcc_linux-9.7.0/tests/test_overlay_clock.py +161 -0
- trcc_linux-9.7.0/tests/test_platform_hw_probes.py +270 -0
- trcc_linux-9.7.0/tests/test_quickstart.py +105 -0
- trcc_linux-9.7.0/tests/test_render_led.py +226 -0
- trcc_linux-9.7.0/tests/test_scsi_lcd_geometry.py +226 -0
- trcc_linux-9.7.0/tests/test_send_color.py +419 -0
- trcc_linux-9.7.0/tests/test_sensor_chain.py +213 -0
- trcc_linux-9.7.0/tests/test_sensors.py +193 -0
- trcc_linux-9.7.0/tests/test_sensors_bsd.py +293 -0
- trcc_linux-9.7.0/tests/test_sensors_lhm_subprocess.py +227 -0
- trcc_linux-9.7.0/tests/test_sensors_macos.py +341 -0
- trcc_linux-9.7.0/tests/test_sensors_windows.py +469 -0
- trcc_linux-9.7.0/tests/test_settings_migration.py +95 -0
- trcc_linux-9.7.0/tests/test_shell.py +143 -0
- trcc_linux-9.7.0/tests/test_theme_persistence.py +1259 -0
- trcc_linux-9.7.0/tests/test_theme_service.py +268 -0
- trcc_linux-9.7.0/tests/test_transports.py +109 -0
- trcc_linux-9.7.0/tests/test_udev.py +99 -0
- trcc_linux-9.7.0/tests/test_video_cache.py +54 -0
- trcc_linux-9.7.0/tests/test_video_playback.py +773 -0
- trcc_linux-9.6.4/.gitignore +0 -116
- trcc_linux-9.6.4/PKG-INFO +0 -470
- trcc_linux-9.6.4/pyproject.toml +0 -271
- trcc_linux-9.6.4/src/trcc/__init__.py +0 -63
- trcc_linux-9.6.4/src/trcc/__main__.py +0 -108
- trcc_linux-9.6.4/src/trcc/__version__.py +0 -4
- trcc_linux-9.6.4/src/trcc/_boot.py +0 -261
- trcc_linux-9.6.4/src/trcc/_entry.py +0 -27
- trcc_linux-9.6.4/src/trcc/adapters/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/device/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/device/_pyusb_find.py +0 -46
- trcc_linux-9.6.4/src/trcc/adapters/device/_usb_bot_scsi.py +0 -199
- trcc_linux-9.6.4/src/trcc/adapters/device/_usb_helpers.py +0 -270
- trcc_linux-9.6.4/src/trcc/adapters/device/bsd/__init__.py +0 -0
- trcc_linux-9.6.4/src/trcc/adapters/device/bsd/detector.py +0 -33
- trcc_linux-9.6.4/src/trcc/adapters/device/bsd/scsi.py +0 -19
- trcc_linux-9.6.4/src/trcc/adapters/device/bulk.py +0 -205
- trcc_linux-9.6.4/src/trcc/adapters/device/bulk_protocol.py +0 -117
- trcc_linux-9.6.4/src/trcc/adapters/device/detector.py +0 -185
- trcc_linux-9.6.4/src/trcc/adapters/device/factory.py +0 -728
- trcc_linux-9.6.4/src/trcc/adapters/device/frame.py +0 -84
- trcc_linux-9.6.4/src/trcc/adapters/device/hid.py +0 -904
- trcc_linux-9.6.4/src/trcc/adapters/device/hid_protocol.py +0 -100
- trcc_linux-9.6.4/src/trcc/adapters/device/led.py +0 -501
- trcc_linux-9.6.4/src/trcc/adapters/device/led_kvm.py +0 -233
- trcc_linux-9.6.4/src/trcc/adapters/device/led_protocol.py +0 -108
- trcc_linux-9.6.4/src/trcc/adapters/device/linux/__init__.py +0 -0
- trcc_linux-9.6.4/src/trcc/adapters/device/linux/detector.py +0 -207
- trcc_linux-9.6.4/src/trcc/adapters/device/linux/scsi.py +0 -177
- trcc_linux-9.6.4/src/trcc/adapters/device/ly.py +0 -248
- trcc_linux-9.6.4/src/trcc/adapters/device/ly_protocol.py +0 -43
- trcc_linux-9.6.4/src/trcc/adapters/device/macos/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/device/macos/detector.py +0 -100
- trcc_linux-9.6.4/src/trcc/adapters/device/macos/scsi.py +0 -20
- trcc_linux-9.6.4/src/trcc/adapters/device/scsi.py +0 -332
- trcc_linux-9.6.4/src/trcc/adapters/device/scsi_protocol.py +0 -98
- trcc_linux-9.6.4/src/trcc/adapters/device/windows/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/device/windows/detector.py +0 -220
- trcc_linux-9.6.4/src/trcc/adapters/device/windows/scsi.py +0 -284
- trcc_linux-9.6.4/src/trcc/adapters/infra/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/infra/binary_reader.py +0 -97
- trcc_linux-9.6.4/src/trcc/adapters/infra/data_repository.py +0 -579
- trcc_linux-9.6.4/src/trcc/adapters/infra/dc_config.py +0 -195
- trcc_linux-9.6.4/src/trcc/adapters/infra/dc_parser.py +0 -799
- trcc_linux-9.6.4/src/trcc/adapters/infra/dc_writer.py +0 -601
- trcc_linux-9.6.4/src/trcc/adapters/infra/debug_report.py +0 -4
- trcc_linux-9.6.4/src/trcc/adapters/infra/diagnostics.py +0 -1961
- trcc_linux-9.6.4/src/trcc/adapters/infra/doctor.py +0 -42
- trcc_linux-9.6.4/src/trcc/adapters/infra/logging_setup.py +0 -4
- trcc_linux-9.6.4/src/trcc/adapters/infra/media_player.py +0 -277
- trcc_linux-9.6.4/src/trcc/adapters/infra/network.py +0 -24
- trcc_linux-9.6.4/src/trcc/adapters/infra/theme_cloud.py +0 -468
- trcc_linux-9.6.4/src/trcc/adapters/infra/theme_downloader.py +0 -271
- trcc_linux-9.6.4/src/trcc/adapters/render/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/render/factory_render.py +0 -15
- trcc_linux-9.6.4/src/trcc/adapters/render/qt.py +0 -389
- trcc_linux-9.6.4/src/trcc/adapters/system/__init__.py +0 -148
- trcc_linux-9.6.4/src/trcc/adapters/system/_base.py +0 -568
- trcc_linux-9.6.4/src/trcc/adapters/system/_shared.py +0 -141
- trcc_linux-9.6.4/src/trcc/adapters/system/_windows_wmi.py +0 -47
- trcc_linux-9.6.4/src/trcc/adapters/system/bsd_platform.py +0 -492
- trcc_linux-9.6.4/src/trcc/adapters/system/config.py +0 -143
- trcc_linux-9.6.4/src/trcc/adapters/system/linux_platform.py +0 -1264
- trcc_linux-9.6.4/src/trcc/adapters/system/linux_sensors.py +0 -603
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/hardware.py +0 -121
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/hid_sensors.py +0 -368
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/powermetrics_extra.py +0 -153
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/powermetrics_ipc.py +0 -108
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/powermetrics_plist.py +0 -118
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/sensors.py +0 -654
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/smc_client.py +0 -405
- trcc_linux-9.6.4/src/trcc/adapters/system/macos/smc_ismc_tables.py +0 -311
- trcc_linux-9.6.4/src/trcc/adapters/system/macos_platform.py +0 -590
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/__init__.py +0 -20
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/enumerator.py +0 -308
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/__init__.py +0 -33
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/_base.py +0 -142
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/hwinfo.py +0 -434
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/lhm.py +0 -350
- trcc_linux-9.6.4/src/trcc/adapters/system/windows/sources/msacpi.py +0 -123
- trcc_linux-9.6.4/src/trcc/adapters/system/windows_platform.py +0 -438
- trcc_linux-9.6.4/src/trcc/conf.py +0 -644
- trcc_linux-9.6.4/src/trcc/core/__init__.py +0 -24
- trcc_linux-9.6.4/src/trcc/core/_command.py +0 -146
- trcc_linux-9.6.4/src/trcc/core/_device_commands.py +0 -50
- trcc_linux-9.6.4/src/trcc/core/_logging.py +0 -27
- trcc_linux-9.6.4/src/trcc/core/builder.py +0 -238
- trcc_linux-9.6.4/src/trcc/core/color.py +0 -116
- trcc_linux-9.6.4/src/trcc/core/control_center_commands.py +0 -282
- trcc_linux-9.6.4/src/trcc/core/device/__init__.py +0 -17
- trcc_linux-9.6.4/src/trcc/core/device/base.py +0 -77
- trcc_linux-9.6.4/src/trcc/core/device/factory.py +0 -150
- trcc_linux-9.6.4/src/trcc/core/device/lcd.py +0 -880
- trcc_linux-9.6.4/src/trcc/core/device/lcd_persistence.py +0 -98
- trcc_linux-9.6.4/src/trcc/core/device/lcd_theme_workflow.py +0 -360
- trcc_linux-9.6.4/src/trcc/core/device/led.py +0 -417
- trcc_linux-9.6.4/src/trcc/core/device/registry.py +0 -95
- trcc_linux-9.6.4/src/trcc/core/encoding.py +0 -20
- trcc_linux-9.6.4/src/trcc/core/events.py +0 -170
- trcc_linux-9.6.4/src/trcc/core/i18n.py +0 -2106
- trcc_linux-9.6.4/src/trcc/core/io.py +0 -57
- trcc_linux-9.6.4/src/trcc/core/lcd_commands.py +0 -632
- trcc_linux-9.6.4/src/trcc/core/led_commands.py +0 -200
- trcc_linux-9.6.4/src/trcc/core/led_segment.py +0 -706
- trcc_linux-9.6.4/src/trcc/core/macos_app_bundle_launch.py +0 -70
- trcc_linux-9.6.4/src/trcc/core/models/__init__.py +0 -21
- trcc_linux-9.6.4/src/trcc/core/models/api.py +0 -26
- trcc_linux-9.6.4/src/trcc/core/models/constants.py +0 -128
- trcc_linux-9.6.4/src/trcc/core/models/device.py +0 -447
- trcc_linux-9.6.4/src/trcc/core/models/led.py +0 -584
- trcc_linux-9.6.4/src/trcc/core/models/os.py +0 -33
- trcc_linux-9.6.4/src/trcc/core/models/overlay.py +0 -344
- trcc_linux-9.6.4/src/trcc/core/models/protocol.py +0 -615
- trcc_linux-9.6.4/src/trcc/core/models/sensor.py +0 -348
- trcc_linux-9.6.4/src/trcc/core/models/theme.py +0 -249
- trcc_linux-9.6.4/src/trcc/core/paths.py +0 -125
- trcc_linux-9.6.4/src/trcc/core/perf.py +0 -201
- trcc_linux-9.6.4/src/trcc/core/platform.py +0 -75
- trcc_linux-9.6.4/src/trcc/core/ports.py +0 -907
- trcc_linux-9.6.4/src/trcc/core/results.py +0 -214
- trcc_linux-9.6.4/src/trcc/core/trcc.py +0 -824
- trcc_linux-9.6.4/src/trcc/core/trcc_proxy.py +0 -493
- trcc_linux-9.6.4/src/trcc/core/wire.py +0 -55
- trcc_linux-9.6.4/src/trcc/daemon.py +0 -253
- trcc_linux-9.6.4/src/trcc/install/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/install/gui.py +0 -486
- trcc_linux-9.6.4/src/trcc/ipc.py +0 -695
- trcc_linux-9.6.4/src/trcc/next/__init__.py +0 -14
- trcc_linux-9.6.4/src/trcc/next/__main__.py +0 -5
- trcc_linux-9.6.4/src/trcc/next/adapters/device/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/next/adapters/device/bulk_lcd.py +0 -128
- trcc_linux-9.6.4/src/trcc/next/adapters/device/hid_lcd.py +0 -290
- trcc_linux-9.6.4/src/trcc/next/adapters/device/led.py +0 -234
- trcc_linux-9.6.4/src/trcc/next/adapters/device/ly_lcd.py +0 -168
- trcc_linux-9.6.4/src/trcc/next/adapters/device/scsi_lcd.py +0 -169
- trcc_linux-9.6.4/src/trcc/next/adapters/device/transport.py +0 -233
- trcc_linux-9.6.4/src/trcc/next/adapters/render/qt.py +0 -231
- trcc_linux-9.6.4/src/trcc/next/adapters/sensors/aggregator.py +0 -340
- trcc_linux-9.6.4/src/trcc/next/adapters/sensors/gpu_detect.py +0 -92
- trcc_linux-9.6.4/src/trcc/next/adapters/sensors/hwmon.py +0 -370
- trcc_linux-9.6.4/src/trcc/next/adapters/sensors/nvml.py +0 -165
- trcc_linux-9.6.4/src/trcc/next/adapters/sensors/psutil_sources.py +0 -149
- trcc_linux-9.6.4/src/trcc/next/adapters/system/__init__.py +0 -1
- trcc_linux-9.6.4/src/trcc/next/adapters/system/_devd.py +0 -153
- trcc_linux-9.6.4/src/trcc/next/adapters/system/_macos_setup.py +0 -166
- trcc_linux-9.6.4/src/trcc/next/adapters/system/_udev.py +0 -185
- trcc_linux-9.6.4/src/trcc/next/adapters/system/_winusb.py +0 -135
- trcc_linux-9.6.4/src/trcc/next/adapters/system/bsd.py +0 -146
- trcc_linux-9.6.4/src/trcc/next/adapters/system/linux.py +0 -507
- trcc_linux-9.6.4/src/trcc/next/adapters/system/macos.py +0 -142
- trcc_linux-9.6.4/src/trcc/next/adapters/system/windows.py +0 -366
- trcc_linux-9.6.4/src/trcc/next/app.py +0 -163
- trcc_linux-9.6.4/src/trcc/next/core/commands.py +0 -567
- trcc_linux-9.6.4/src/trcc/next/core/errors.py +0 -38
- trcc_linux-9.6.4/src/trcc/next/core/events.py +0 -130
- trcc_linux-9.6.4/src/trcc/next/core/models.py +0 -199
- trcc_linux-9.6.4/src/trcc/next/core/ports.py +0 -533
- trcc_linux-9.6.4/src/trcc/next/core/registry.py +0 -146
- trcc_linux-9.6.4/src/trcc/next/core/results.py +0 -109
- trcc_linux-9.6.4/src/trcc/next/services/_dc_reader.py +0 -432
- trcc_linux-9.6.4/src/trcc/next/services/display.py +0 -291
- trcc_linux-9.6.4/src/trcc/next/services/led_segment.py +0 -863
- trcc_linux-9.6.4/src/trcc/next/services/media.py +0 -328
- trcc_linux-9.6.4/src/trcc/next/services/overlay.py +0 -110
- trcc_linux-9.6.4/src/trcc/next/services/settings.py +0 -221
- trcc_linux-9.6.4/src/trcc/next/services/theme.py +0 -177
- trcc_linux-9.6.4/src/trcc/next/ui/api/_shared.py +0 -155
- trcc_linux-9.6.4/src/trcc/next/ui/api/devices.py +0 -35
- trcc_linux-9.6.4/src/trcc/next/ui/api/display.py +0 -91
- trcc_linux-9.6.4/src/trcc/next/ui/api/led.py +0 -25
- trcc_linux-9.6.4/src/trcc/next/ui/api/main.py +0 -65
- trcc_linux-9.6.4/src/trcc/next/ui/api/schemas.py +0 -119
- trcc_linux-9.6.4/src/trcc/next/ui/api/system.py +0 -33
- trcc_linux-9.6.4/src/trcc/next/ui/cli/_ctx.py +0 -42
- trcc_linux-9.6.4/src/trcc/next/ui/cli/device.py +0 -50
- trcc_linux-9.6.4/src/trcc/next/ui/cli/display.py +0 -83
- trcc_linux-9.6.4/src/trcc/next/ui/cli/led.py +0 -40
- trcc_linux-9.6.4/src/trcc/next/ui/cli/main.py +0 -63
- trcc_linux-9.6.4/src/trcc/next/ui/cli/system.py +0 -97
- trcc_linux-9.6.4/src/trcc/next/ui/gui/__init__.py +0 -12
- trcc_linux-9.6.4/src/trcc/next/ui/gui/app.py +0 -152
- trcc_linux-9.6.4/src/trcc/next/ui/gui/bus_bridge.py +0 -69
- trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/__init__.py +0 -7
- trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/device_panel.py +0 -85
- trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/display_panel.py +0 -111
- trcc_linux-9.6.4/src/trcc/next/ui/gui/panels/led_panel.py +0 -122
- trcc_linux-9.6.4/src/trcc/services/__init__.py +0 -27
- trcc_linux-9.6.4/src/trcc/services/audio.py +0 -123
- trcc_linux-9.6.4/src/trcc/services/device.py +0 -358
- trcc_linux-9.6.4/src/trcc/services/display.py +0 -844
- trcc_linux-9.6.4/src/trcc/services/display_loops.py +0 -212
- trcc_linux-9.6.4/src/trcc/services/display_pipeline.py +0 -146
- trcc_linux-9.6.4/src/trcc/services/image.py +0 -242
- trcc_linux-9.6.4/src/trcc/services/lcd_config.py +0 -60
- trcc_linux-9.6.4/src/trcc/services/led.py +0 -492
- trcc_linux-9.6.4/src/trcc/services/led_config.py +0 -139
- trcc_linux-9.6.4/src/trcc/services/led_effects.py +0 -259
- trcc_linux-9.6.4/src/trcc/services/media.py +0 -238
- trcc_linux-9.6.4/src/trcc/services/metrics_loop.py +0 -195
- trcc_linux-9.6.4/src/trcc/services/overlay.py +0 -727
- trcc_linux-9.6.4/src/trcc/services/perf.py +0 -467
- trcc_linux-9.6.4/src/trcc/services/system.py +0 -183
- trcc_linux-9.6.4/src/trcc/services/theme.py +0 -671
- trcc_linux-9.6.4/src/trcc/services/theme_loader.py +0 -256
- trcc_linux-9.6.4/src/trcc/services/theme_persistence.py +0 -119
- trcc_linux-9.6.4/src/trcc/services/video_cache.py +0 -253
- trcc_linux-9.6.4/src/trcc/ui/__init__.py +0 -11
- trcc_linux-9.6.4/src/trcc/ui/api/__init__.py +0 -593
- trcc_linux-9.6.4/src/trcc/ui/api/control_center.py +0 -143
- trcc_linux-9.6.4/src/trcc/ui/api/devices.py +0 -189
- trcc_linux-9.6.4/src/trcc/ui/api/display.py +0 -579
- trcc_linux-9.6.4/src/trcc/ui/api/i18n.py +0 -45
- trcc_linux-9.6.4/src/trcc/ui/api/led.py +0 -158
- trcc_linux-9.6.4/src/trcc/ui/api/models.py +0 -157
- trcc_linux-9.6.4/src/trcc/ui/api/system.py +0 -129
- trcc_linux-9.6.4/src/trcc/ui/api/themes.py +0 -472
- trcc_linux-9.6.4/src/trcc/ui/api/trcc.py +0 -82
- trcc_linux-9.6.4/src/trcc/ui/cli/__init__.py +0 -1728
- trcc_linux-9.6.4/src/trcc/ui/cli/__main__.py +0 -8
- trcc_linux-9.6.4/src/trcc/ui/cli/_connect.py +0 -49
- trcc_linux-9.6.4/src/trcc/ui/cli/_control_center.py +0 -134
- trcc_linux-9.6.4/src/trcc/ui/cli/_device.py +0 -126
- trcc_linux-9.6.4/src/trcc/ui/cli/_diag.py +0 -17
- trcc_linux-9.6.4/src/trcc/ui/cli/_display.py +0 -488
- trcc_linux-9.6.4/src/trcc/ui/cli/_i18n.py +0 -42
- trcc_linux-9.6.4/src/trcc/ui/cli/_led.py +0 -276
- trcc_linux-9.6.4/src/trcc/ui/cli/_status.py +0 -140
- trcc_linux-9.6.4/src/trcc/ui/cli/_system.py +0 -261
- trcc_linux-9.6.4/src/trcc/ui/cli/_theme.py +0 -345
- trcc_linux-9.6.4/src/trcc/ui/gui/__init__.py +0 -158
- trcc_linux-9.6.4/src/trcc/ui/gui/assets.py +0 -230
- trcc_linux-9.6.4/src/trcc/ui/gui/base.py +0 -775
- trcc_linux-9.6.4/src/trcc/ui/gui/base_handler.py +0 -63
- trcc_linux-9.6.4/src/trcc/ui/gui/color_and_add_panels.py +0 -284
- trcc_linux-9.6.4/src/trcc/ui/gui/constants.py +0 -453
- trcc_linux-9.6.4/src/trcc/ui/gui/display_mode_panels.py +0 -699
- trcc_linux-9.6.4/src/trcc/ui/gui/eyedropper.py +0 -177
- trcc_linux-9.6.4/src/trcc/ui/gui/lcd_handler.py +0 -920
- trcc_linux-9.6.4/src/trcc/ui/gui/led_handler.py +0 -232
- trcc_linux-9.6.4/src/trcc/ui/gui/overlay_element.py +0 -220
- trcc_linux-9.6.4/src/trcc/ui/gui/overlay_grid.py +0 -312
- trcc_linux-9.6.4/src/trcc/ui/gui/pipewire_capture.py +0 -397
- trcc_linux-9.6.4/src/trcc/ui/gui/screen_capture.py +0 -313
- trcc_linux-9.6.4/src/trcc/ui/gui/splash.py +0 -190
- trcc_linux-9.6.4/src/trcc/ui/gui/trcc_app.py +0 -1938
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_about.py +0 -535
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_activity_sidebar.py +0 -194
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_color_wheel.py +0 -259
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_device.py +0 -393
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_image_cut.py +0 -398
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_info_module.py +0 -111
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_led_control.py +0 -1390
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_screen_led.py +0 -651
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_sensor_picker.py +0 -277
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_system_info.py +0 -566
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_local.py +0 -382
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_mask.py +0 -285
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_setting.py +0 -312
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_theme_web.py +0 -306
- trcc_linux-9.6.4/src/trcc/ui/gui/uc_video_cut.py +0 -667
- trcc_linux-9.6.4/tests/README.md +0 -97
- trcc_linux-9.6.4/tests/__init__.py +0 -3
- trcc_linux-9.6.4/tests/adapters/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/device/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/device/bsd/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/device/bsd/test_detector.py +0 -31
- trcc_linux-9.6.4/tests/adapters/device/bsd/test_scsi.py +0 -206
- trcc_linux-9.6.4/tests/adapters/device/bsd/test_scsi_protocol.py +0 -175
- trcc_linux-9.6.4/tests/adapters/device/conftest.py +0 -73
- trcc_linux-9.6.4/tests/adapters/device/linux/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/device/linux/test_scsi.py +0 -297
- trcc_linux-9.6.4/tests/adapters/device/macos/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/device/macos/test_detector.py +0 -89
- trcc_linux-9.6.4/tests/adapters/device/macos/test_scsi.py +0 -71
- trcc_linux-9.6.4/tests/adapters/device/test_bulk.py +0 -849
- trcc_linux-9.6.4/tests/adapters/device/test_detector.py +0 -291
- trcc_linux-9.6.4/tests/adapters/device/test_factory.py +0 -999
- trcc_linux-9.6.4/tests/adapters/device/test_frame.py +0 -192
- trcc_linux-9.6.4/tests/adapters/device/test_implementations.py +0 -148
- trcc_linux-9.6.4/tests/adapters/device/test_led.py +0 -1566
- trcc_linux-9.6.4/tests/adapters/device/test_led_kvm.py +0 -316
- trcc_linux-9.6.4/tests/adapters/device/test_ly.py +0 -341
- trcc_linux-9.6.4/tests/adapters/device/test_scsi.py +0 -511
- trcc_linux-9.6.4/tests/adapters/device/windows/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/device/windows/test_detector.py +0 -270
- trcc_linux-9.6.4/tests/adapters/device/windows/test_scsi.py +0 -155
- trcc_linux-9.6.4/tests/adapters/infra/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/infra/test_data_repository.py +0 -895
- trcc_linux-9.6.4/tests/adapters/infra/test_dc_config.py +0 -591
- trcc_linux-9.6.4/tests/adapters/infra/test_dc_parser.py +0 -1839
- trcc_linux-9.6.4/tests/adapters/infra/test_dc_writer.py +0 -755
- trcc_linux-9.6.4/tests/adapters/infra/test_debug_report.py +0 -1333
- trcc_linux-9.6.4/tests/adapters/infra/test_media_player.py +0 -291
- trcc_linux-9.6.4/tests/adapters/infra/test_theme_cloud.py +0 -490
- trcc_linux-9.6.4/tests/adapters/infra/test_theme_downloader.py +0 -240
- trcc_linux-9.6.4/tests/adapters/system/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/system/bsd/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/system/bsd/test_hardware.py +0 -118
- trcc_linux-9.6.4/tests/adapters/system/bsd/test_platform.py +0 -41
- trcc_linux-9.6.4/tests/adapters/system/bsd/test_sensors.py +0 -118
- trcc_linux-9.6.4/tests/adapters/system/conftest.py +0 -400
- trcc_linux-9.6.4/tests/adapters/system/linux/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/system/linux/test_hardware.py +0 -601
- trcc_linux-9.6.4/tests/adapters/system/linux/test_platform.py +0 -50
- trcc_linux-9.6.4/tests/adapters/system/linux/test_sensors.py +0 -450
- trcc_linux-9.6.4/tests/adapters/system/macos/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/system/macos/test_hardware.py +0 -116
- trcc_linux-9.6.4/tests/adapters/system/macos/test_platform.py +0 -41
- trcc_linux-9.6.4/tests/adapters/system/macos/test_powermetrics_extra.py +0 -127
- trcc_linux-9.6.4/tests/adapters/system/macos/test_powermetrics_ipc.py +0 -139
- trcc_linux-9.6.4/tests/adapters/system/macos/test_powermetrics_plist.py +0 -64
- trcc_linux-9.6.4/tests/adapters/system/macos/test_sensors.py +0 -693
- trcc_linux-9.6.4/tests/adapters/system/test_config.py +0 -203
- trcc_linux-9.6.4/tests/adapters/system/windows/__init__.py +0 -0
- trcc_linux-9.6.4/tests/adapters/system/windows/test_hardware.py +0 -195
- trcc_linux-9.6.4/tests/adapters/system/windows/test_hwinfo_source.py +0 -281
- trcc_linux-9.6.4/tests/adapters/system/windows/test_platform.py +0 -42
- trcc_linux-9.6.4/tests/adapters/system/windows/test_sensors.py +0 -542
- trcc_linux-9.6.4/tests/api/__init__.py +0 -0
- trcc_linux-9.6.4/tests/api/conftest.py +0 -88
- trcc_linux-9.6.4/tests/api/test_api.py +0 -3108
- trcc_linux-9.6.4/tests/api/test_api_security.py +0 -222
- trcc_linux-9.6.4/tests/cli/__init__.py +0 -0
- trcc_linux-9.6.4/tests/cli/conftest.py +0 -322
- trcc_linux-9.6.4/tests/cli/test_cli.py +0 -821
- trcc_linux-9.6.4/tests/cli/test_device.py +0 -731
- trcc_linux-9.6.4/tests/cli/test_display.py +0 -724
- trcc_linux-9.6.4/tests/cli/test_led.py +0 -801
- trcc_linux-9.6.4/tests/cli/test_serve.py +0 -174
- trcc_linux-9.6.4/tests/cli/test_system.py +0 -2394
- trcc_linux-9.6.4/tests/cli/test_theme.py +0 -717
- trcc_linux-9.6.4/tests/conftest.py +0 -627
- trcc_linux-9.6.4/tests/core/__init__.py +0 -0
- trcc_linux-9.6.4/tests/core/test_builder.py +0 -271
- trcc_linux-9.6.4/tests/core/test_builder_routing.py +0 -212
- trcc_linux-9.6.4/tests/core/test_color.py +0 -195
- trcc_linux-9.6.4/tests/core/test_descriptors_ipc.py +0 -125
- trcc_linux-9.6.4/tests/core/test_device_isolation.py +0 -266
- trcc_linux-9.6.4/tests/core/test_encoding.py +0 -141
- trcc_linux-9.6.4/tests/core/test_geometry.py +0 -197
- trcc_linux-9.6.4/tests/core/test_i18n.py +0 -170
- trcc_linux-9.6.4/tests/core/test_io.py +0 -64
- trcc_linux-9.6.4/tests/core/test_lcd_device.py +0 -1091
- trcc_linux-9.6.4/tests/core/test_led_device.py +0 -587
- trcc_linux-9.6.4/tests/core/test_led_segment.py +0 -1524
- trcc_linux-9.6.4/tests/core/test_led_segment_ax120.py +0 -968
- trcc_linux-9.6.4/tests/core/test_models.py +0 -1050
- trcc_linux-9.6.4/tests/core/test_paths.py +0 -241
- trcc_linux-9.6.4/tests/core/test_perf.py +0 -119
- trcc_linux-9.6.4/tests/core/test_wire.py +0 -231
- trcc_linux-9.6.4/tests/fixtures/hwinfo/.gitkeep +0 -0
- trcc_linux-9.6.4/tests/gui/__init__.py +0 -0
- trcc_linux-9.6.4/tests/gui/conftest.py +0 -312
- trcc_linux-9.6.4/tests/gui/test_base.py +0 -255
- trcc_linux-9.6.4/tests/gui/test_base_panel.py +0 -186
- trcc_linux-9.6.4/tests/gui/test_constants.py +0 -147
- trcc_linux-9.6.4/tests/gui/test_lcd_handler.py +0 -880
- trcc_linux-9.6.4/tests/gui/test_led_control.py +0 -895
- trcc_linux-9.6.4/tests/gui/test_misc.py +0 -1188
- trcc_linux-9.6.4/tests/gui/test_preview.py +0 -1009
- trcc_linux-9.6.4/tests/gui/test_screen_capture.py +0 -149
- trcc_linux-9.6.4/tests/gui/test_theme_mask.py +0 -341
- trcc_linux-9.6.4/tests/gui/test_theme_setting.py +0 -1257
- trcc_linux-9.6.4/tests/gui/test_trcc_app.py +0 -1763
- trcc_linux-9.6.4/tests/gui/test_widgets.py +0 -613
- trcc_linux-9.6.4/tests/mock_platform.py +0 -361
- trcc_linux-9.6.4/tests/next/conftest.py +0 -282
- trcc_linux-9.6.4/tests/next/test_autostart.py +0 -85
- trcc_linux-9.6.4/tests/next/test_commands.py +0 -58
- trcc_linux-9.6.4/tests/next/test_dc_reader.py +0 -145
- trcc_linux-9.6.4/tests/next/test_sensors.py +0 -109
- trcc_linux-9.6.4/tests/next/test_theme_service.py +0 -136
- trcc_linux-9.6.4/tests/next/test_transports.py +0 -109
- trcc_linux-9.6.4/tests/next/test_udev.py +0 -99
- trcc_linux-9.6.4/tests/noop_transports.py +0 -228
- trcc_linux-9.6.4/tests/services/__init__.py +0 -0
- trcc_linux-9.6.4/tests/services/conftest.py +0 -49
- trcc_linux-9.6.4/tests/services/test_device.py +0 -421
- trcc_linux-9.6.4/tests/services/test_display_integration.py +0 -1082
- trcc_linux-9.6.4/tests/services/test_image_ansi.py +0 -274
- trcc_linux-9.6.4/tests/services/test_led.py +0 -1307
- trcc_linux-9.6.4/tests/services/test_led_config.py +0 -254
- trcc_linux-9.6.4/tests/services/test_led_effects.py +0 -505
- trcc_linux-9.6.4/tests/services/test_media.py +0 -379
- trcc_linux-9.6.4/tests/services/test_overlay.py +0 -694
- trcc_linux-9.6.4/tests/services/test_perf.py +0 -273
- trcc_linux-9.6.4/tests/services/test_services.py +0 -896
- trcc_linux-9.6.4/tests/services/test_system.py +0 -432
- trcc_linux-9.6.4/tests/services/test_theme.py +0 -1570
- trcc_linux-9.6.4/tests/services/test_theme_loader.py +0 -278
- trcc_linux-9.6.4/tests/services/test_theme_persistence.py +0 -457
- trcc_linux-9.6.4/tests/services/test_video_cache.py +0 -242
- trcc_linux-9.6.4/tests/test_all_devices.py +0 -206
- trcc_linux-9.6.4/tests/test_architecture.py +0 -428
- trcc_linux-9.6.4/tests/test_conf.py +0 -584
- trcc_linux-9.6.4/tests/test_cpu.py +0 -413
- trcc_linux-9.6.4/tests/test_integration.py +0 -411
- trcc_linux-9.6.4/tests/test_memory.py +0 -744
- trcc_linux-9.6.4/tests/test_wiring.py +0 -259
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/LICENSE +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/README.md +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/__init__.py +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/device/usb_bot_scsi.py +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/render/__init__.py +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/adapters/sensors/__init__.py +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/LibreHardwareMonitor.config +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/com.github.lexonight1.trcc.policy +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/fonts/MSYH.TTC +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/fonts/MSYHBD.TTC +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/fonts/README.md +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/app.ico +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_128x128.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_16x16.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_24x24.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_256x256.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_32x32.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_48x48.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/icons/trcc_64x64.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/trcc-linux.desktop +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/assets/trcc-quirk-fix.service +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/core/__init__.py +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/data/trcc_usb.te +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/services/__init__.py +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/ui/__init__.py +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/ui/api/__init__.py +0 -0
- {trcc_linux-9.6.4/src/trcc/next → trcc_linux-9.7.0/src/trcc}/ui/cli/__init__.py +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/240240.gif +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/240320.gif +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/320240.gif +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/320320.gif +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120 Digital.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120 Digitala.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120_Digital.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AK120_Digitala.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120 VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120 VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AS120_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120 DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120 DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120_DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1AX120_DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120 VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120 VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1BA120_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CORE_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ1a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZ2a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZTV.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1CZTVa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1ELITE_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN HORIZON PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN MAGIC PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN VISION V2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN VISION V2a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SE.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME SEa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAME.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN WARFRAMEa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_HORIZON_PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_MAGIC_PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_VISION_V2a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SE.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAME_SEa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1FROZEN_WARFRAMEa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1GRAND_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HR10 2280 PRO DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1HYPER_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1KVMALEDC6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1KVMALEDC6a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC1a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2JD.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2JDa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC2a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC3a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC5a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC7.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC7a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC8.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC8a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC9.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LC9a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD10.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD10a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD6a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD7.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD7a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD8.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD8a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD9.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LD9a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10V.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10Va.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF10a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF11.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF11a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF12.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF12a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF13.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF13a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF14.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF14a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF15.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF15a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF16.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF167.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF16a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF17a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF18.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF18a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF19.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF19a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF20.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF20a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF21.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF21a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF22.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF22a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF25.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF25a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF8.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LF8a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM16SE.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM16SEa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM19SE.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM19SEa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM22.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM22a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM24.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM24a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM26.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM26a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM27.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM27a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM30.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1LM30a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISION PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISION PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PRO.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISION_PROa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Mjolnir_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120 DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120 DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120_DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PA120_DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PC1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1PC1a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120 DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120 DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120_DIGITAL.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RK120_DIGITALa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130 VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130 VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130_VISION.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1RP130_VISIONa.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream Vision.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream Visiona.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream_Vision.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/A1Stream_Visiona.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_dropdown.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_dropdown_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_dropdown_select.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_update.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/about_update_overlay.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_about_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_0.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_brightness_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_export.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_form_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_help.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_import.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_main_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_power.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_power_hover.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_save.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_sysinfo_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_cloud.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_cloud_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_local.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_local_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_mask.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_mask_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_mask_lower.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_settings.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_tab_settings_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_theme_base_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_theme_gallery_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/app_theme_settings_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_btn.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_btn_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/carousel_select_frame.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_eyedropper.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_picker.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_selector_ring.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_panel_slider_thumb.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_knob.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_knob_0.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_toggle_hover.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_toggle_off.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/color_wheel_toggle_on.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_12h.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_24h.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_border.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_border_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_crop.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_dm.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_dmy.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_md.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_date_ymd.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_digit_font.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_fit_height.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_fit_width.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_function.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_function_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_gif.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_image.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_livestream.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_mask.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_network.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_icon_video.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m1_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m2_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m3_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m4_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m5_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_m6_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_minus.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_network_btn.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_plus.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_rotate.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_slider_thumb.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_text_font.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_unit_c.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/display_mode_unit_f.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/frozen_warframe_ultra.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/frozen_warframe_ultra_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_110x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_116x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_1280x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_160x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_180x400.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_180x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x400.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_240x427.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_270x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_320x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_320x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_320x86.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_360x360.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_400x180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_400x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_427x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x110.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x116.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x160.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x270.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_480x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/image_cut_86x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_aggregate.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_aggregate_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_cz1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_kvma.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lc1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lc2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf10.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf11.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf12.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf13.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf15.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_lf8.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_rgb_lf13.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_segment.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_bg_segment_4zone.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_highlight.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_highlight_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_menu.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_dropdown_menu_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_external.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_external_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_helmet_5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bar_6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_5_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_meter_bg_6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_10.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_10_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_11.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_11_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_12.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_12_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_1_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_2_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_3_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_4_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_5_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_6_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_7.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_7_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_8.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_8_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_9.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_mode_9_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_power.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_power_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_blue.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_cyan.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_green.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_orange.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_purple.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_red.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_white.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preset_yellow.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_ak120.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_ax120.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_cz1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_frozen_horizon_pro.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_frozen_magic_pro.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lc1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lc2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf10.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf11.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf12.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf13.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf15.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_lf8.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_pa120.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_preview_pa120_space.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_1_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_2_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_show_3_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_slider_thumb.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_1_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_2_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_3_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_btn_4_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_1_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_2_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_3_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_4_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_5.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_5_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_6.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/led_zone_mode_6_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_1_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_sysinfo_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_text.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_text_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_text_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_time.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_time_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_label_time_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_date.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_hardware.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_text.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_time.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_mode_weekday.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/overlay_select.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_110x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_116x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_160x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_180x400.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_180x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x400.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_240x427.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_270x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x320_round.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_320x86.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_360x360_round.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_400x180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_400x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_427x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x110.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x116.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x160.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x270.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_480x480_round.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_86x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_animation.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_btn.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_btn_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_pause.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_play.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_player_control_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_1280x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_1920x440.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_1920x462.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_320x960.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_360x800.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_440x1920.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_462x1920.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_480x1280.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_480x800.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_480x854.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_540x960.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_800x360.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_800x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_854x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_960x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_popup_960x540.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_240x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_240x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_320x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_res_320x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_round_mask_320x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_round_mask_360x360.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_round_mask_480x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_video_controls_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/preview_video_controls_bg_alt.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_4.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/screen_led_deco_cz1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_d.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_e.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_f.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_h.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_p.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_r.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/secondary_screen_bg_x.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_content.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_content_btn.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_content_mask.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_date.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_date_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_icon.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_link_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_text.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_text_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_time.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_time_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_weekday.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_add_weekday_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_anim_sync.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_background.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_brightness.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_keyboard_sync_1.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_keyboard_sync_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_keyboard_sync_3.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_module.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_add_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_color_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_grid_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_overlay_table_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/settings_params.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_brightness_bar.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_checkbox_off.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_checkbox_on.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_clip_a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_clip_b.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_close.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_close_2.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown_bg_2x.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown_bg_4x.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_dropdown_highlight.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_loading_animation.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_progress_bar.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_round_close.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_round_confirm.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_scrollbar_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_scrollbar_thumb.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_shortcut_size_slider.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_thread_multi.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_thread_single.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_toggle_off.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shared_toggle_on.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_d.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_e.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_f.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_p.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_r.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/shortcuts_panel_x.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_about.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_about_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_about_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_no_device.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_sensor.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_sensor_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_splash.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sidebar_sysinfo_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a_180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a_270.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_a_90.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b_180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b_270.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_b_90.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c_180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c_270.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/split_overlay_c_90.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_add_group.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_cpu.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_custom.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_dram.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_fan.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_gpu.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_hdd.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_net.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_next_page.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_prev_page.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_scrollbar.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/sysinfo_select.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_browser_filter.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_browser_filter_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_d.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_e.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_en.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_f.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_h.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_p.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_r.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_tc.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_cloud_label_x.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_carousel.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_carousel_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_export_all.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_multi_select.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_multi_select_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_select_frame.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_local_select_frame_active.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/theme_mask_label.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_110x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_116x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_1280x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_160x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_180x400.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_180x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x400.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_240x427.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_270x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_320x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_320x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_320x86.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_360x360.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_400x180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_400x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_427x240.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x110.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x116.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x160.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x180.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x270.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_480x480.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_86x320.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_bg.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/assets/video_cut_bg_alt.png +0 -0
- {trcc_linux-9.6.4 → trcc_linux-9.7.0}/src/trcc/ui/gui/uc_preview.py +0 -0
- {trcc_linux-9.6.4/tests/next → trcc_linux-9.7.0/tests}/__init__.py +0 -0
|
@@ -0,0 +1,121 @@
|
|
|
1
|
+
# Python
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.pyc
|
|
4
|
+
*.pyo
|
|
5
|
+
*.pyd
|
|
6
|
+
.Python
|
|
7
|
+
.pytest_cache/
|
|
8
|
+
.mypy_cache/
|
|
9
|
+
.ruff_cache/
|
|
10
|
+
.coverage
|
|
11
|
+
htmlcov/
|
|
12
|
+
|
|
13
|
+
# Build artifacts
|
|
14
|
+
dist/
|
|
15
|
+
build/
|
|
16
|
+
*.egg-info/
|
|
17
|
+
|
|
18
|
+
# Virtual environment
|
|
19
|
+
.venv/
|
|
20
|
+
env/
|
|
21
|
+
ENV/
|
|
22
|
+
|
|
23
|
+
# IDE
|
|
24
|
+
.vscode/
|
|
25
|
+
.idea/
|
|
26
|
+
*.swp
|
|
27
|
+
*.swo
|
|
28
|
+
*~
|
|
29
|
+
*.code-workspace
|
|
30
|
+
pyrightconfig_strict.json
|
|
31
|
+
|
|
32
|
+
# AI tooling
|
|
33
|
+
CLAUDE.md
|
|
34
|
+
.claude/
|
|
35
|
+
|
|
36
|
+
# OS
|
|
37
|
+
.DS_Store
|
|
38
|
+
Thumbs.db
|
|
39
|
+
|
|
40
|
+
# Image editor project files
|
|
41
|
+
*.xcf
|
|
42
|
+
|
|
43
|
+
# FFmpeg temp
|
|
44
|
+
.video_temp/
|
|
45
|
+
|
|
46
|
+
# Logs
|
|
47
|
+
*.log
|
|
48
|
+
|
|
49
|
+
# ──────────────────────────────────────────────
|
|
50
|
+
# Theme & Web archives: .7z files ARE tracked.
|
|
51
|
+
# Extracted dirs are regenerated at runtime via on-demand download.
|
|
52
|
+
# ──────────────────────────────────────────────
|
|
53
|
+
|
|
54
|
+
# Extracted theme dirs (from theme*.7z archives)
|
|
55
|
+
src/trcc/data/theme*/Theme[1-5]/
|
|
56
|
+
src/trcc/data/theme*/Custom_*/
|
|
57
|
+
src/trcc/data/theme*/[0-9]*/
|
|
58
|
+
src/trcc/data/theme*/Theme.zt
|
|
59
|
+
src/trcc/data/theme*/Theme.dc
|
|
60
|
+
src/trcc/data/theme*/01.png
|
|
61
|
+
|
|
62
|
+
# Extracted Web dirs (from *.7z and zt*.7z archives)
|
|
63
|
+
src/trcc/data/web/[0-9]*/
|
|
64
|
+
src/trcc/data/web/zt*/[0-9]*/
|
|
65
|
+
src/trcc/data/web/**/*.mp4
|
|
66
|
+
src/trcc/data/web/**/*.png
|
|
67
|
+
|
|
68
|
+
# Keep all .7z archives tracked
|
|
69
|
+
!src/trcc/data/theme*.7z
|
|
70
|
+
!src/trcc/data/web/*.7z
|
|
71
|
+
|
|
72
|
+
# Runtime data
|
|
73
|
+
src/trcc/data/web_cache/
|
|
74
|
+
src/trcc/data/themes/
|
|
75
|
+
src/trcc/data/images/
|
|
76
|
+
src/trcc/data/settings.json
|
|
77
|
+
src/trcc/data/ui_*.json
|
|
78
|
+
|
|
79
|
+
# ──────────────────────────────────────────────
|
|
80
|
+
# Dev / reference files (not for distribution)
|
|
81
|
+
# ──────────────────────────────────────────────
|
|
82
|
+
# Block /dev/* per-file so the !-negations below can re-include
|
|
83
|
+
# the shared mock harness. (`/dev/` directory-level rule wouldn't
|
|
84
|
+
# allow re-include — git can't unignore a file under an ignored
|
|
85
|
+
# directory.)
|
|
86
|
+
/dev/*
|
|
87
|
+
# Mock harness IS shared tooling — every developer benefits from
|
|
88
|
+
# the same MockPlatform-backed CLI / API / GUI entry points.
|
|
89
|
+
!/dev/mock_cli.py
|
|
90
|
+
!/dev/mock_api.py
|
|
91
|
+
!/dev/mock_gui.py
|
|
92
|
+
!/dev/_mock_bootstrap.py
|
|
93
|
+
!/dev/_mock_daemon.py
|
|
94
|
+
!/dev/smoke_rotation_mask.py
|
|
95
|
+
!/dev/smoke_daemon_gui.py
|
|
96
|
+
!/dev/smoke_sleep_cycle.py
|
|
97
|
+
!/dev/smoke_linux.py
|
|
98
|
+
!/dev/smoke_windows.py
|
|
99
|
+
!/dev/smoke_macos.py
|
|
100
|
+
!/dev/smoke_macos_parsers.py
|
|
101
|
+
!/dev/smoke_platforms.py
|
|
102
|
+
!/dev/smoke_variant_resolution.py
|
|
103
|
+
!/dev/smoke_bsd.py
|
|
104
|
+
!/dev/_smoke_runtime.py
|
|
105
|
+
!/dev/parity_smoke.py
|
|
106
|
+
!/dev/smoke_full_pipeline.py
|
|
107
|
+
/dev_*
|
|
108
|
+
# Dev scripts at root
|
|
109
|
+
/test_*.py
|
|
110
|
+
/probe_*.py
|
|
111
|
+
/*.sh
|
|
112
|
+
!install.sh
|
|
113
|
+
|
|
114
|
+
# Dev tooling
|
|
115
|
+
tools/
|
|
116
|
+
|
|
117
|
+
# Large binary docs
|
|
118
|
+
doc/*.pdf
|
|
119
|
+
|
|
120
|
+
# C# audit docs (reference only, not for distribution)
|
|
121
|
+
doc/audit/
|
|
@@ -0,0 +1,470 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: trcc-linux
|
|
3
|
+
Version: 9.7.0
|
|
4
|
+
Summary: Linux implementation of Thermalright LCD Control Center
|
|
5
|
+
Project-URL: Homepage, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
6
|
+
Project-URL: Documentation, https://github.com/Lexonight1/thermalright-trcc-linux#readme
|
|
7
|
+
Project-URL: Repository, https://github.com/Lexonight1/thermalright-trcc-linux
|
|
8
|
+
Project-URL: Issues, https://github.com/Lexonight1/thermalright-trcc-linux/issues
|
|
9
|
+
Author: TRCC Linux Contributors
|
|
10
|
+
License-Expression: GPL-3.0-or-later
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Keywords: cooling,hardware,lcd,monitor,thermalright
|
|
13
|
+
Classifier: Development Status :: 4 - Beta
|
|
14
|
+
Classifier: Environment :: X11 Applications
|
|
15
|
+
Classifier: Intended Audience :: End Users/Desktop
|
|
16
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
|
|
17
|
+
Classifier: Operating System :: POSIX :: Linux
|
|
18
|
+
Classifier: Programming Language :: Python :: 3
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: System :: Hardware
|
|
24
|
+
Classifier: Topic :: System :: Monitoring
|
|
25
|
+
Requires-Python: >=3.10
|
|
26
|
+
Requires-Dist: certifi>=2023.7.22
|
|
27
|
+
Requires-Dist: click>=7.0
|
|
28
|
+
Requires-Dist: fastapi>=0.100
|
|
29
|
+
Requires-Dist: libusb-package>=1.0.26.3; sys_platform == 'win32' and python_version < '3.14'
|
|
30
|
+
Requires-Dist: numpy>=1.24.0
|
|
31
|
+
Requires-Dist: prompt-toolkit>=3.0.0
|
|
32
|
+
Requires-Dist: psutil>=5.9.0
|
|
33
|
+
Requires-Dist: pyside6>=6.5.0
|
|
34
|
+
Requires-Dist: python-multipart>=0.0.6
|
|
35
|
+
Requires-Dist: pyusb>=1.2.0
|
|
36
|
+
Requires-Dist: sounddevice>=0.4.6
|
|
37
|
+
Requires-Dist: typer>=0.9.0
|
|
38
|
+
Requires-Dist: tzdata>=2024.1; sys_platform == 'win32'
|
|
39
|
+
Requires-Dist: uvicorn[standard]>=0.20
|
|
40
|
+
Requires-Dist: wmi>=1.5.1; sys_platform == 'win32'
|
|
41
|
+
Provides-Extra: all
|
|
42
|
+
Requires-Dist: dbus-python>=1.3.0; extra == 'all'
|
|
43
|
+
Requires-Dist: hidapi>=0.14.0; extra == 'all'
|
|
44
|
+
Requires-Dist: httpx>=0.24.0; extra == 'all'
|
|
45
|
+
Requires-Dist: nvidia-ml-py>=11.0.0; extra == 'all'
|
|
46
|
+
Requires-Dist: pygobject>=3.42.0; extra == 'all'
|
|
47
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'all'
|
|
48
|
+
Requires-Dist: pytest>=7.0.0; extra == 'all'
|
|
49
|
+
Requires-Dist: qrcode>=7.0; extra == 'all'
|
|
50
|
+
Requires-Dist: ruff>=0.4.0; extra == 'all'
|
|
51
|
+
Requires-Dist: types-qrcode>=7.0; extra == 'all'
|
|
52
|
+
Provides-Extra: dev
|
|
53
|
+
Requires-Dist: httpx>=0.24.0; extra == 'dev'
|
|
54
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == 'dev'
|
|
55
|
+
Requires-Dist: pytest>=7.0.0; extra == 'dev'
|
|
56
|
+
Requires-Dist: ruff>=0.4.0; extra == 'dev'
|
|
57
|
+
Requires-Dist: types-qrcode>=7.0; extra == 'dev'
|
|
58
|
+
Provides-Extra: hid
|
|
59
|
+
Requires-Dist: hidapi>=0.14.0; extra == 'hid'
|
|
60
|
+
Provides-Extra: nvidia
|
|
61
|
+
Requires-Dist: nvidia-ml-py>=11.0.0; extra == 'nvidia'
|
|
62
|
+
Provides-Extra: remote
|
|
63
|
+
Requires-Dist: qrcode>=7.0; extra == 'remote'
|
|
64
|
+
Provides-Extra: wayland
|
|
65
|
+
Requires-Dist: dbus-python>=1.3.0; extra == 'wayland'
|
|
66
|
+
Requires-Dist: pygobject>=3.42.0; extra == 'wayland'
|
|
67
|
+
Provides-Extra: windows
|
|
68
|
+
Requires-Dist: pywin32>=306; (sys_platform == 'win32') and extra == 'windows'
|
|
69
|
+
Requires-Dist: wmi>=1.5.1; (sys_platform == 'win32') and extra == 'windows'
|
|
70
|
+
Description-Content-Type: text/markdown
|
|
71
|
+
|
|
72
|
+
# Intro
|
|
73
|
+
> "I’ll do it while you talk" - Józef Piłsudski, was the founding father of modern Poland
|
|
74
|
+
|
|
75
|
+
> "Free software is a matter of liberty, not price. To understand the concept, you should think of free as in free speech, not as in free beer." - [Richard Stallman](https://stallman.org/), founder of the [Free Software Foundation](https://www.fsf.org/)
|
|
76
|
+
# TRCC Linux
|
|
77
|
+
> **Looking for testers!** We need **Linux**, **Windows**, **macOS**, and **BSD** testers. If you have a Thermalright LCD or LED device on any platform, grab the latest [release](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest) and [let us know how it goes](https://github.com/Lexonight1/thermalright-trcc-linux/issues) — run `trcc report` and paste the output in an issue. Every test report helps, even if nothing works yet!
|
|
78
|
+
|
|
79
|
+
> **Solo hobbyist project** — built in my spare time, one device, no corporate backing. Just a Linux user who got tired of waiting for Thermalright to support us. If something breaks, please be patient — I do this for free because I like helping people. If this project helps you, consider [buying me a beer](https://buymeacoffee.com/Lexonight1) 🍺 or [Ko-fi](https://ko-fi.com/lexonight1) ☕
|
|
80
|
+
|
|
81
|
+
> **Need help?** [Open a GitHub issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new) — that's the only place I see support requests. I don't monitor Reddit, forums, Discord, or Discussions. Run `trcc report` and paste the output so I can actually help you.
|
|
82
|
+
|
|
83
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
84
|
+
[](https://pypi.org/project/trcc-linux/)
|
|
85
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases)
|
|
86
|
+
[](https://pypi.org/project/trcc-linux/)
|
|
87
|
+
[](LICENSE)
|
|
88
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
89
|
+
|
|
90
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
91
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
92
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/ci.yml)
|
|
93
|
+
[](https://python.org)
|
|
94
|
+
[](https://docs.astral.sh/ruff/)
|
|
95
|
+
[](https://microsoft.github.io/pyright/)
|
|
96
|
+
|
|
97
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/stargazers)
|
|
98
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/network/members)
|
|
99
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/issues)
|
|
100
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/commits/main)
|
|
101
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux)
|
|
102
|
+
|
|
103
|
+
**Packages:**
|
|
104
|
+
|
|
105
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
106
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
107
|
+
|
|
108
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
109
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
110
|
+
|
|
111
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
112
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
113
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/releases/latest)
|
|
114
|
+
|
|
115
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/blob/main/flake.nix)
|
|
116
|
+
[](https://github.com/Lexonight1/thermalright-trcc-linux/tree/main/packaging/gentoo)
|
|
117
|
+
|
|
118
|
+
[](https://buymeacoffee.com/Lexonight1)
|
|
119
|
+
[](https://ko-fi.com/lexonight1)
|
|
120
|
+
|
|
121
|
+
> 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**, and **Dunvcpi** for the beers — you guys are legends.
|
|
122
|
+
|
|
123
|
+
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.
|
|
124
|
+
|
|
125
|
+
> **This project wouldn't exist without our testers.** I only own one device. Every supported device in this list works because someone plugged it in, ran `trcc report`, and told me what broke. 32 testers helped us go from "SCSI only" to full C# feature parity with 6 USB protocols, 16 FBL resolutions, and 12 LED styles. Open source at its best — see [Contributors](#contributors) below.
|
|
126
|
+
|
|
127
|
+
> Unofficial community project, not affiliated with Thermalright. Built with [Claude](https://claude.ai) (AI) for protocol reverse engineering and code generation, guided by human architecture decisions and logical assessment.
|
|
128
|
+
|
|
129
|
+
## Install
|
|
130
|
+
|
|
131
|
+
### Native packages (recommended)
|
|
132
|
+
|
|
133
|
+
Pre-built packages are available for every major distro. No pip, no venv, no PEP 668 headaches — just download and install like any other app. Every release is built automatically from source using [GitHub Actions](https://github.com/Lexonight1/thermalright-trcc-linux/actions/workflows/release.yml) — the build logs are public so anyone can verify what went in.
|
|
134
|
+
|
|
135
|
+
> For detailed step-by-step instructions, troubleshooting, and alternative install methods, see the **[Install Guide](doc/GUIDE_INSTALL.md)**.
|
|
136
|
+
|
|
137
|
+
| Distro | Install Guide |
|
|
138
|
+
|--------|--------------|
|
|
139
|
+
| Fedora / Nobara / openSUSE | [Fedora](doc/GUIDE_INSTALL.md#fedora--nobara) |
|
|
140
|
+
| Bazzite / Bluefin / Aurora / Universal Blue | [Immutable Fedora](doc/GUIDE_INSTALL.md#bazzite--aurora--bluefin--fedora-atomic) |
|
|
141
|
+
| Ubuntu 24.04+ / Debian 13+ / Mint 22+ / Pop!_OS / Zorin | [Ubuntu / Debian](doc/GUIDE_INSTALL.md#ubuntu--debian--mint--pop_os--zorin) |
|
|
142
|
+
| Ubuntu 22.04 / Mint 21.x / Debian 12 (older) | [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) |
|
|
143
|
+
| Arch / CachyOS / Manjaro / EndeavourOS / Garuda | [Arch](doc/GUIDE_INSTALL.md#arch--cachyos--manjaro--endeavouros--garuda) |
|
|
144
|
+
| NixOS | [NixOS](doc/GUIDE_INSTALL.md#nixos) |
|
|
145
|
+
| Gentoo | [Gentoo](doc/GUIDE_INSTALL.md#gentoo) |
|
|
146
|
+
| SteamOS (Steam Deck) | [SteamOS](doc/GUIDE_INSTALL.md#steamos-steam-deck) |
|
|
147
|
+
| Windows 10/11 | [Windows](doc/GUIDE_INSTALL.md#windows-experimental) |
|
|
148
|
+
| macOS 11+ | [macOS](doc/GUIDE_INSTALL.md#macos-experimental) |
|
|
149
|
+
| FreeBSD | [FreeBSD](doc/GUIDE_INSTALL.md#freebsd-experimental) |
|
|
150
|
+
|
|
151
|
+
Each guide has a one-liner copy-paste command and step-by-step instructions. After installing, unplug and replug the USB cable, then run `trcc gui`.
|
|
152
|
+
|
|
153
|
+
### Verify your download
|
|
154
|
+
|
|
155
|
+
Every release includes a `SHA256SUMS.txt` file. Download it from the same release page, then:
|
|
156
|
+
|
|
157
|
+
```bash
|
|
158
|
+
cd ~/Downloads
|
|
159
|
+
sha256sum -c SHA256SUMS.txt --ignore-missing
|
|
160
|
+
```
|
|
161
|
+
|
|
162
|
+
If you see `OK` next to your package — it's clean. Source code is GPL-3.0, fully auditable — no binaries, no obfuscation, no telemetry.
|
|
163
|
+
|
|
164
|
+
### PyPI
|
|
165
|
+
|
|
166
|
+
Best option for very old distros (Ubuntu 20.04, Debian 11) or if you prefer Python packaging. For Ubuntu 22.04 / Mint 21.x / Debian 12, the [Legacy DEB](doc/GUIDE_INSTALL.md#ubuntu-2204--mint-21x--debian-12-legacy-deb) is easier.
|
|
167
|
+
|
|
168
|
+
```bash
|
|
169
|
+
# Install system dependencies first
|
|
170
|
+
sudo apt install pipx libusb-1.0-0 sg3-utils p7zip-full libxcb-cursor0 # Debian/Ubuntu/Mint
|
|
171
|
+
sudo dnf install pipx libusb-1.0.0 sg3_utils p7zip # Fedora
|
|
172
|
+
|
|
173
|
+
# Install trcc-linux
|
|
174
|
+
pipx install trcc-linux
|
|
175
|
+
trcc setup # interactive wizard — udev rules, desktop entry
|
|
176
|
+
```
|
|
177
|
+
|
|
178
|
+
Then **unplug and replug the USB cable** and run `trcc gui`.
|
|
179
|
+
|
|
180
|
+
> `pipx` not installed? `sudo apt install pipx` (Debian/Ubuntu), `sudo dnf install pipx` (Fedora), `sudo pacman -S python-pipx` (Arch). See the **[Install Guide](doc/GUIDE_INSTALL.md)** for your distro.
|
|
181
|
+
|
|
182
|
+
### Automatic (git clone)
|
|
183
|
+
|
|
184
|
+
```bash
|
|
185
|
+
git clone https://github.com/Lexonight1/thermalright-trcc-linux.git
|
|
186
|
+
cd thermalright-trcc-linux
|
|
187
|
+
sudo ./install.sh
|
|
188
|
+
```
|
|
189
|
+
|
|
190
|
+
Detects your distro, installs system packages, Python deps, udev rules, and desktop shortcut.
|
|
191
|
+
|
|
192
|
+
### Supported distros
|
|
193
|
+
|
|
194
|
+
Fedora, Nobara, Ubuntu, Debian, Mint, Pop!_OS, Zorin, elementary OS, Arch, Manjaro, EndeavourOS, CachyOS, Garuda, openSUSE, Void, Gentoo, Alpine, NixOS, Bazzite, Aurora, Bluefin, SteamOS (Steam Deck).
|
|
195
|
+
|
|
196
|
+
> **`trcc: command not found`?** Open a new terminal — pip installs to `~/.local/bin` which needs a new shell session to appear on PATH.
|
|
197
|
+
|
|
198
|
+
> See the **[Install Guide](doc/GUIDE_INSTALL.md)** for distro-specific instructions and troubleshooting.
|
|
199
|
+
|
|
200
|
+
### Have an untested device?
|
|
201
|
+
|
|
202
|
+
Run `trcc report` and [paste the output in an issue](https://github.com/Lexonight1/thermalright-trcc-linux/issues/new) — takes 30 seconds. See the **[full list of devices that need testers](doc/TESTERS_WANTED.md)**.
|
|
203
|
+
|
|
204
|
+

|
|
205
|
+
|
|
206
|
+
## Usage
|
|
207
|
+
|
|
208
|
+
### GUI
|
|
209
|
+
|
|
210
|
+
```bash
|
|
211
|
+
trcc gui
|
|
212
|
+
```
|
|
213
|
+
|
|
214
|
+
Full desktop app with theme browser, video player, overlay editor, LED control panel, and hardware sensor dashboard.
|
|
215
|
+
|
|
216
|
+
### CLI
|
|
217
|
+
|
|
218
|
+
```bash
|
|
219
|
+
trcc detect # Show connected devices
|
|
220
|
+
trcc send image.png # Send image to LCD
|
|
221
|
+
trcc color "#ff0000" # Fill LCD with solid color
|
|
222
|
+
trcc video clip.mp4 # Play video on LCD
|
|
223
|
+
trcc screencast # Live screen capture to LCD
|
|
224
|
+
trcc brightness 2 # Set brightness (1=25%, 2=50%, 3=100%)
|
|
225
|
+
trcc rotation 90 # Rotate display (0/90/180/270)
|
|
226
|
+
trcc theme-list # List available themes
|
|
227
|
+
trcc theme-load NAME # Load a theme by name
|
|
228
|
+
trcc overlay # Render and send overlay
|
|
229
|
+
trcc led-color "#00ff00" # Set LED color
|
|
230
|
+
trcc led-mode breathing # Set LED effect mode
|
|
231
|
+
trcc report # Generate diagnostic report
|
|
232
|
+
trcc doctor # Check system dependencies
|
|
233
|
+
trcc setup # Interactive setup wizard
|
|
234
|
+
trcc uninstall # Remove TRCC completely
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
See the **[CLI Reference](doc/REFERENCE_CLI.md)** for the full command list.
|
|
238
|
+
|
|
239
|
+
### REST API
|
|
240
|
+
|
|
241
|
+
Start the API server and control your devices remotely:
|
|
242
|
+
|
|
243
|
+
```bash
|
|
244
|
+
trcc serve # Start on http://localhost:9876
|
|
245
|
+
trcc serve --port 8080 # Custom port
|
|
246
|
+
trcc serve --tls # HTTPS with auto-generated self-signed cert
|
|
247
|
+
trcc serve --host 0.0.0.0 # Listen on all interfaces (LAN access)
|
|
248
|
+
```
|
|
249
|
+
|
|
250
|
+
78 endpoints covering devices, display, LED, themes, and system metrics. Use `trcc api` to list all endpoints.
|
|
251
|
+
|
|
252
|
+
```bash
|
|
253
|
+
# Examples with curl
|
|
254
|
+
curl http://localhost:9876/devices # List devices
|
|
255
|
+
curl -X POST http://localhost:9876/display/send \
|
|
256
|
+
-F "file=@wallpaper.png" # Send image
|
|
257
|
+
curl -X POST http://localhost:9876/led/color \
|
|
258
|
+
-H "Content-Type: application/json" \
|
|
259
|
+
-d '{"color": "#ff0000"}' # Set LED color
|
|
260
|
+
```
|
|
261
|
+
|
|
262
|
+
### Tips
|
|
263
|
+
|
|
264
|
+
**Mounting your device vertically?**
|
|
265
|
+
Set the angle to **90°** (or 270°) in the GUI, then open **Cloud Themes** — the browser will automatically show portrait-orientation themes for your device's rotated dimensions. Download and apply one of those for a proper vertical layout. Local themes are landscape-only; portrait layouts come from the cloud theme packs.
|
|
266
|
+
|
|
267
|
+
## Documentation
|
|
268
|
+
|
|
269
|
+
| Document | Description |
|
|
270
|
+
|----------|-------------|
|
|
271
|
+
| [Install Guide](doc/GUIDE_INSTALL.md) | Installation for all major distros |
|
|
272
|
+
| [CLI Reference](doc/REFERENCE_CLI.md) | All CLI commands with options and examples |
|
|
273
|
+
| [User Guide](doc/GUIDE_USER.md) | How to use everything — GUI, themes, overlays, media, LED |
|
|
274
|
+
| [API Reference](doc/REFERENCE_API.md) | All 78 REST API endpoints with request/response models |
|
|
275
|
+
| [Troubleshooting](doc/GUIDE_TROUBLESHOOTING.md) | Common issues and fixes |
|
|
276
|
+
| [New to Linux](doc/GUIDE_NEW_TO_LINUX.md) | Guide for Linux beginners |
|
|
277
|
+
| [Changelog](doc/CHANGELOG.md) | Version history |
|
|
278
|
+
| [Supported Devices](doc/REFERENCE_DEVICES.md) | Full device list with USB IDs and protocols |
|
|
279
|
+
| [Testers Wanted](doc/TESTERS_WANTED.md) | Devices that need hardware validation |
|
|
280
|
+
| [Device Testing Guide](doc/GUIDE_DEVICE_TESTING.md) | How to test and report device compatibility |
|
|
281
|
+
| [Architecture](doc/ARCHITECTURE.md) | Project layout and design |
|
|
282
|
+
| [Technical Reference](doc/REFERENCE_TECHNICAL.md) | SCSI protocol and file formats |
|
|
283
|
+
|
|
284
|
+
### Protocol documentation (reverse-engineered from Windows TRCC)
|
|
285
|
+
|
|
286
|
+
| Document | Description |
|
|
287
|
+
|----------|-------------|
|
|
288
|
+
| [Technical Reference](doc/REFERENCE_TECHNICAL.md) | SCSI protocol, FBL detection, PM/SUB mapping |
|
|
289
|
+
| [USBLCDNEW Protocol](doc/PROTOCOL_USBLCDNEW.md) | USB bulk/LY frame transfer protocol |
|
|
290
|
+
| [USBLED Protocol](doc/PROTOCOL_USBLED.md) | HID LED segment display protocol |
|
|
291
|
+
|
|
292
|
+
## Features
|
|
293
|
+
|
|
294
|
+
| Category | What you get |
|
|
295
|
+
|----------|-------------|
|
|
296
|
+
| **GUI** | Full PySide6 desktop app — theme browser, video player, overlay editor, LED control panel, 38 languages |
|
|
297
|
+
| **CLI** | `trcc gui`, `trcc send`, `trcc video`, `trcc led-color`, `trcc screencast`, `trcc shell`, and more |
|
|
298
|
+
| **REST API** | 78 endpoints — control everything remotely, build integrations, automate your setup |
|
|
299
|
+
| **Themes** | Local, cloud, and masks — carousel mode, export/import as `.tr` files, custom mask upload with X/Y positioning, 5 starters + 120 masks per resolution |
|
|
300
|
+
| **Media** | Video/GIF playback on LCD, video trimmer, image cropper, screen cast (X11 + Wayland), mic audio visualization |
|
|
301
|
+
| **Overlay Editor** | Text, sensors, date/time overlays — font picker, dynamic scaling, color picker |
|
|
302
|
+
| **Hardware Sensors** | 77+ sensors — CPU/GPU temp, fan speed, power, usage — customizable dashboard |
|
|
303
|
+
| **LED Control** | 12 LED styles, zone carousel, breathing/rainbow/static/wave modes, per-zone color |
|
|
304
|
+
| **Display** | 16 resolutions (240x240 to 1920x462), 0/90/180/270 rotation, 3 brightness levels |
|
|
305
|
+
| **Multi-device** | Per-device config, auto-detect, multi-device with device selection |
|
|
306
|
+
| **Security** | udev rules, polkit policy, SELinux support, no root required after setup |
|
|
307
|
+
|
|
308
|
+
**Under the hood**: 147 source files, ~49K lines of Python, 5799 tests across 96 test files in 9 directories. Hexagonal architecture with strict dependency injection — GUI, CLI, and API all talk to the same core services. 6 USB protocols reverse-engineered from the Windows C# app.
|
|
309
|
+
|
|
310
|
+
### What we do better than Windows TRCC
|
|
311
|
+
|
|
312
|
+
- **38 languages** — Windows has 10 (baked into PNGs). We render text at runtime, community can add more
|
|
313
|
+
- **CLI + REST API** — Windows is GUI-only. We have full CLI and 49 API endpoints for automation
|
|
314
|
+
- **Custom mask upload** — upload your own PNG overlay, position with X/Y controls, saved to `~/.trcc-user/`
|
|
315
|
+
- **No admin required** — udev rules handle permissions. Windows needs "Run as Administrator"
|
|
316
|
+
- **Open source** — read the code, fix bugs, add features. Windows TRCC is closed-source .NET
|
|
317
|
+
- **Screencast on Wayland** — Windows can't do that either
|
|
318
|
+
- **Audio visualization** — mic spectrum analyzer on screencast. Windows doesn't have this
|
|
319
|
+
- **Hexagonal architecture** — GUI, CLI, and API share the same core. No feature lag between interfaces
|
|
320
|
+
|
|
321
|
+
### 38-Language GUI (i18n)
|
|
322
|
+
|
|
323
|
+
The Windows TRCC app ships 10 languages by baking translated text into separate PNG background images — 129 PNGs just for panel labels. We replaced all of that with a runtime i18n system: language-neutral background PNGs + QLabel text overlays rendered from `core/i18n.py`. Switching languages updates every label instantly — no restart, no extra files.
|
|
324
|
+
|
|
325
|
+
**Supported languages:** Simplified Chinese, Traditional Chinese, English, German, Russian, French, Portuguese, Japanese, Spanish, Korean, Italian, Dutch, Polish, Turkish, Arabic, Hindi, Thai, Vietnamese, Indonesian, Czech, Swedish, Danish, Norwegian, Finnish, Hungarian, Romanian, Ukrainian, Greek, Hebrew, Malay, Bengali, Urdu, Farsi, Tagalog, Tamil, Punjabi, Swahili, Burmese
|
|
326
|
+
|
|
327
|
+
Adding a new language is one dict entry per string in `core/i18n.py` — no PNG editing, no asset pipeline. Community translations welcome.
|
|
328
|
+
|
|
329
|
+
### Supported Devices
|
|
330
|
+
|
|
331
|
+
Run `lsusb` to find your USB ID (`xxxx:xxxx` after `ID`), then match it below.
|
|
332
|
+
|
|
333
|
+
**SCSI devices** — fully supported:
|
|
334
|
+
| USB ID | Devices |
|
|
335
|
+
|--------|---------|
|
|
336
|
+
| `87CD:70DB` | FROZEN HORIZON PRO, FROZEN MAGIC PRO, FROZEN VISION V2, CORE VISION, ELITE VISION, AK120, AX120, PA120 DIGITAL, Wonder Vision |
|
|
337
|
+
| `0416:5406` | LC1, LC2, LC3, LC5 (AIO pump heads) |
|
|
338
|
+
| `0402:3922` | FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE, ELITE VISION 360 |
|
|
339
|
+
|
|
340
|
+
**Bulk USB devices** — raw USB protocol:
|
|
341
|
+
| USB ID | Devices |
|
|
342
|
+
|--------|---------|
|
|
343
|
+
| `87AD:70DB` | GrandVision 360 AIO, Mjolnir Vision 360, Wonder Vision Pro 360, Frozen Warframe Pro |
|
|
344
|
+
|
|
345
|
+
**LY USB devices** — chunked bulk protocol:
|
|
346
|
+
| USB ID | Devices |
|
|
347
|
+
|--------|---------|
|
|
348
|
+
| `0416:5408` | Trofeo Vision 9.16 LCD |
|
|
349
|
+
| `0416:5409` | (LY1 variant) |
|
|
350
|
+
|
|
351
|
+
**HID LCD devices** — auto-detected:
|
|
352
|
+
| USB ID | Devices |
|
|
353
|
+
|--------|---------|
|
|
354
|
+
| `0416:5302` | Trofeo Vision LCD, Assassin Spirit 120 Vision ARGB, AS120 VISION, BA120 VISION, FROZEN WARFRAME, FROZEN WARFRAME 360, FROZEN WARFRAME SE, FROZEN WARFRAME PRO, ELITE VISION, LC5 |
|
|
355
|
+
| `0418:5303` | TARAN ARMS |
|
|
356
|
+
| `0418:5304` | TARAN ARMS |
|
|
357
|
+
|
|
358
|
+
**HID LED devices** — RGB LED control:
|
|
359
|
+
| USB ID | Devices |
|
|
360
|
+
|--------|---------|
|
|
361
|
+
| `0416:8001` | AX120 DIGITAL, PA120 DIGITAL, Peerless Assassin 120 DIGITAL ARGB White, Assassin X 120R Digital ARGB, Phantom Spirit 120 Digital EVO, HR10 2280 PRO Digital, and others (model auto-detected via handshake) |
|
|
362
|
+
|
|
363
|
+
> See the [full device list with protocol details](doc/REFERENCE_DEVICES.md) and the [Device Testing Guide](doc/GUIDE_DEVICE_TESTING.md) if you have an untested device.
|
|
364
|
+
|
|
365
|
+
## Architecture
|
|
366
|
+
|
|
367
|
+
```text
|
|
368
|
+
src/trcc/
|
|
369
|
+
├── core/ # Models, enums, domain constants — zero I/O
|
|
370
|
+
├── services/ # Business logic — pure Python, no framework deps
|
|
371
|
+
├── adapters/ # USB device protocols (SCSI, HID, Bulk, LY, LED)
|
|
372
|
+
├── ui/
|
|
373
|
+
│ ├── gui/ # PySide6 GUI — themes, video, overlay, LED, sensors
|
|
374
|
+
│ ├── cli/ # Typer CLI — 95 commands across 8 modules
|
|
375
|
+
│ └── api/ # FastAPI REST API — 78 endpoints across 7 modules
|
|
376
|
+
├── _boot.py # Composition root — returns Trcc or TrccProxy
|
|
377
|
+
├── daemon.py # Optional singleton daemon mode (TRCC_DAEMON=1)
|
|
378
|
+
├── ipc.py # Manifold IPC — UI ↔ daemon over Unix socket
|
|
379
|
+
├── conf.py # Settings singleton
|
|
380
|
+
└── assets/ # GUI images, desktop entry, polkit policy, systemd service
|
|
381
|
+
```
|
|
382
|
+
|
|
383
|
+
**Hexagonal architecture** — GUI, CLI, and API are interchangeable adapters over the same core services. Adding a new interface (Android app, Home Assistant plugin) means writing a new adapter, not touching business logic.
|
|
384
|
+
|
|
385
|
+
### Reproducing reporter bugs (contributors)
|
|
386
|
+
|
|
387
|
+
When a `trcc report` lands on an issue, the harness in `dev/smoke_anything.py` runs every probe — handshake idempotency, video target dims, RAPL discovery, WMI CoInitialize, addr-threading, sleep/resume cycle — through the fully DI'd stack at the reporter's exact OS + device:
|
|
388
|
+
|
|
389
|
+
```bash
|
|
390
|
+
PYTHONPATH=src python3 dev/smoke_anything.py --from-report report.txt
|
|
391
|
+
PYTHONPATH=src python3 dev/smoke_anything.py --os linux --device 87ad:70db
|
|
392
|
+
PYTHONPATH=src python3 dev/smoke_anything.py --list-probes
|
|
393
|
+
```
|
|
394
|
+
|
|
395
|
+
If a probe goes `BAD`, that's the bug — fix in `src/`, re-run, see `PASS`. Every reproduced regression becomes a new probe in `PROBES`, so the next reporter with the same root cause gets caught in 30 seconds. Discipline: never reply "try vX.Y.Z" until a probe has actually gone `PASS` against the reporter's environment.
|
|
396
|
+
|
|
397
|
+
**6 USB protocols** reverse-engineered from the Windows C# app:
|
|
398
|
+
|
|
399
|
+
| Protocol | Transport | Devices |
|
|
400
|
+
|----------|-----------|---------|
|
|
401
|
+
| SCSI | SG_IO ioctl | Frozen Warframe, Elite Vision, AK/AX120, PA120, LC1-5 |
|
|
402
|
+
| HID Type 2 | pyusb interrupt | Trofeo Vision, Assassin Spirit, AS/BA120, Frozen Warframe SE/PRO |
|
|
403
|
+
| HID Type 3 | pyusb interrupt | TARAN ARMS |
|
|
404
|
+
| Bulk | pyusb bulk | GrandVision 360, Mjolnir Vision 360, Wonder Vision Pro 360, Frozen Warframe Pro |
|
|
405
|
+
| LY | pyusb bulk (chunked) | Trofeo Vision 9.16 LCD |
|
|
406
|
+
| LED | pyusb HID | All LED segment display devices (12 styles) |
|
|
407
|
+
|
|
408
|
+
## Contributors
|
|
409
|
+
|
|
410
|
+
A huge thank you to every single person who filed an issue, pasted a `trcc report`, or just said "it doesn't work." You are the reason this project supports 6 USB protocols, 16 resolutions, and 12 LED styles from a single developer with one device. Every bug report, every test on hardware I don't own, every "hey this is broken" — that's open source at its best. You're not wasting your time. You're building something together.
|
|
411
|
+
|
|
412
|
+
Special thanks to everyone who has contributed invaluable reports to this project:
|
|
413
|
+
|
|
414
|
+
**Frozen Warframe** — **[gizbo](https://github.com/gizbo)** · **[knappstar](https://github.com/knappstar)** · **[Scifiguygaming](https://github.com/Scifiguygaming)** · **[apj202-ops](https://github.com/apj202-ops)** · **[loosethoughts19-hash](https://github.com/loosethoughts19-hash)** · **[Edoardo-Rossi-EOS](https://github.com/Edoardo-Rossi-EOS)** · **[edoargo1996](https://github.com/edoargo1996)** · **[stephendesmond1-cmd](https://github.com/stephendesmond1-cmd)** · **[riodevelop](https://github.com/riodevelop)** · **[wobbegongus](https://github.com/wobbegongus)** · **[Pallemz](https://github.com/Pallemz)** · **[pawbtism](https://github.com/pawbtism)**
|
|
415
|
+
|
|
416
|
+
**Trofeo Vision** — **[N8ghtz](https://github.com/N8ghtz)** · **[PantherX12max](https://github.com/PantherX12max)** · **[ravensvoice](https://github.com/ravensvoice)** · **[beret21](https://github.com/beret21)** · **[jimmister1234-bit](https://github.com/jimmister1234-bit)** · **[Tavus1990](https://github.com/Tavus1990)** · **[ImlostinIKEA](https://github.com/ImlostinIKEA)** · **[ronny79privat](https://github.com/ronny79privat)** · **[OptimalKiller](https://github.com/OptimalKiller)**
|
|
417
|
+
|
|
418
|
+
**GrandVision 360 AIO** — **[bipobuilt](https://github.com/bipobuilt)** · **[cadeon](https://github.com/cadeon)** · **[Reborn627](https://github.com/Reborn627)** · **[TheManchineel](https://github.com/TheManchineel)** · **[ImlostinIKEA](https://github.com/ImlostinIKEA)**
|
|
419
|
+
|
|
420
|
+
**Assassin Spirit 120 Vision** — **[michael-spinelli](https://github.com/michael-spinelli)** · **[acioannina-wq](https://github.com/acioannina-wq)**
|
|
421
|
+
|
|
422
|
+
**Assassin X 120R Digital ARGB** — **[hexskrew](https://github.com/hexskrew)** · **[rhuggins573-crypto](https://github.com/rhuggins573-crypto)**
|
|
423
|
+
|
|
424
|
+
**Peerless Assassin 120 Digital ARGB** — **[Xentrino](https://github.com/Xentrino)** · **[Vydon](https://github.com/Vydon)**
|
|
425
|
+
|
|
426
|
+
**PA120 Digital** — **[Pewful2021](https://github.com/Pewful2021)** · **[lallemandgianni-boop](https://github.com/lallemandgianni-boop)** · **[mody446](https://github.com/mody446)**
|
|
427
|
+
|
|
428
|
+
**Phantom Spirit 120 Digital EVO** — **[javisaman](https://github.com/javisaman)** · **[Rizzzolo](https://github.com/Rizzzolo)** · **[chava-byte](https://github.com/chava-byte)**
|
|
429
|
+
|
|
430
|
+
**Wonder Vision** — **[Civilgrain](https://github.com/Civilgrain)** · **[Alb3e3](https://github.com/Alb3e3)**
|
|
431
|
+
|
|
432
|
+
**AX120 Digital** — **[shadowepaxeor-glitch](https://github.com/shadowepaxeor-glitch)**
|
|
433
|
+
|
|
434
|
+
**Elite Vision 360** — **[tensaiteki](https://github.com/tensaiteki)**
|
|
435
|
+
|
|
436
|
+
**Mjolnir Vision 360** — **[Pikarz](https://github.com/Pikarz)** · **[RonyPony1234](https://github.com/RonyPony1234)**
|
|
437
|
+
|
|
438
|
+
**Peerless Assassin 140 Digital** — **[MioHorizon](https://github.com/MioHorizon)**
|
|
439
|
+
|
|
440
|
+
**Peerless Vision** — **[Mr-Renegade](https://github.com/Mr-Renegade)**
|
|
441
|
+
|
|
442
|
+
**Stream Vision** — **[Me-shok](https://github.com/Me-shok)**
|
|
443
|
+
|
|
444
|
+
**HR10 2280 PRO Digital** — **[Lcstyle](https://github.com/Lcstyle)**
|
|
445
|
+
|
|
446
|
+
**macOS** — **[jaminmc](https://github.com/jaminmc)** (Apple Silicon sensor research, PR #114 feedback)
|
|
447
|
+
|
|
448
|
+
**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**
|
|
449
|
+
|
|
450
|
+
## Stars
|
|
451
|
+
|
|
452
|
+
Thanks to everyone who took a moment to star this project.
|
|
453
|
+
|
|
454
|
+
**[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)**
|
|
455
|
+
|
|
456
|
+
## Faulkers
|
|
457
|
+
|
|
458
|
+
Thanks for carrying the torch — these folks forked the repo to build on it.
|
|
459
|
+
|
|
460
|
+
**[capiazmi](https://github.com/capiazmi)** · **[dabombUSA](https://github.com/dabombUSA)** · **[danleyb2](https://github.com/danleyb2)** · **[DasFlogetier](https://github.com/DasFlogetier)** · **[elsiedotcafe](https://github.com/elsiedotcafe)** · **[jaminmc](https://github.com/jaminmc)** · **[jemte](https://github.com/jemte)** · **[jezzaw007](https://github.com/jezzaw007)** · **[JoshWrites](https://github.com/JoshWrites)** · **[jwcrowley](https://github.com/jwcrowley)** · **[maniwaroka](https://github.com/maniwaroka)** · **[taillis](https://github.com/taillis)** · **[TuxLux40](https://github.com/TuxLux40)**
|
|
461
|
+
|
|
462
|
+
## Donations
|
|
463
|
+
|
|
464
|
+
If this project saved you from keeping a Windows partition around, consider **[buying me a cold one](https://buymeacoffee.com/Lexonight1)**.
|
|
465
|
+
|
|
466
|
+
## License
|
|
467
|
+
|
|
468
|
+
[GPL-3.0](https://www.gnu.org/licenses/gpl-3.0.en.html) — free as in freedom. This project is and always will be free software. You can use it, study it, modify it, and share it. That's the deal.
|
|
469
|
+
|
|
470
|
+
Built on the shoulders of [Richard Stallman](https://stallman.org/), the [GNU Project](https://www.gnu.org/gnu/thegnuproject.en.html), and the [Free Software Foundation](https://www.fsf.org/). If you care about software freedom, [read why it matters](https://www.gnu.org/philosophy/free-sw.en.html).
|