gpu temp/usage

This commit is contained in:
Benjamin Palko 2025-07-24 11:22:18 -04:00
parent 3a2fae13a2
commit 35d2addd70
4 changed files with 79 additions and 0 deletions

View file

@ -15,6 +15,7 @@ Singleton {
property Storage storage: Storage {}
property Memory memory: Memory {}
property Cpu cpu: Cpu {}
property Gpu gpu: Gpu {}
property Caffeine caffeine: Caffeine {}
property Workspace workspace: Workspace {}
property Tray tray: Tray {}
@ -73,6 +74,14 @@ Singleton {
property int height: 30
property int horizontalPadding: 8
property int verticalPadding: 6
}
component Gpu: QtObject {
property int iconSize: 14
property int fontSize: 14
property int height: 30
property int horizontalPadding: 8
property int verticalPadding: 6
}
component Caffeine: QtObject {