GPU plugin
Lint & Format (JS/TS) / lint-format (pull_request) Successful in 11s
Python / lint-format (pull_request) Successful in 18s
Python / test (pull_request) Successful in 29s
Lint & Format (Rust) / lint-format (pull_request) Successful in 1m8s

This commit is contained in:
2026-06-22 23:13:18 +02:00
parent 80d5f13663
commit a37f6075d1
8 changed files with 478 additions and 283 deletions
+6 -6
View File
@@ -55,18 +55,18 @@ Item {
WrappedLoader {
id: gpuCard
active: Config.dashboard.performance.showGpu && SystemUsage.gpuType !== ""
active: Config.dashboard.performance.showGpu && Gpu.type !== Gpu.None
sourceComponent: HeroCard {
accent: DynamicColors.palette.m3secondary
icon: "desktop_windows"
label: qsTr("GPU")
subLabel: SystemUsage.gpuName
temperature: SystemUsage.gpuTemp
usage: SystemUsage.gpuPerc
subLabel: Gpu.name
temperature: Gpu.temperature
usage: Gpu.percentage
Ref {
service: SystemUsage
ServiceRef {
service: Gpu
}
}
}