add full proj

This commit is contained in:
2026-05-31 09:28:44 +02:00
commit f8a4536a02
26 changed files with 1307 additions and 0 deletions

13
widgets/CpuTemp.qml Normal file
View File

@@ -0,0 +1,13 @@
import "../config"
import "../services"
MetricPill {
icon: Icons.thermo
// temperature thresholds differ from load: warm >70, hot >85
iconColor: SysStats.temp >= 85 ? Theme.red
: SysStats.temp >= 70 ? Theme.peach
: SysStats.temp >= 55 ? Theme.yellow
: Theme.green
value: SysStats.temp + "°C"
reserve: "100°C"
}