gpu applet: use configurable warm/hot thresholds from module config
This commit is contained in:
parent
42d11e7a14
commit
4256c3b86f
3 changed files with 16 additions and 3 deletions
|
|
@ -158,7 +158,7 @@ Column {
|
|||
height: 22
|
||||
label: "Temp"
|
||||
value: S.SystemStats.gpuTempC + "\u00B0C"
|
||||
valueColor: S.SystemStats.gpuTempC > 85 ? S.Theme.base08 : S.SystemStats.gpuTempC > 70 ? S.Theme.base0A : S.Theme.base05
|
||||
valueColor: S.SystemStats.gpuTempC > S.Modules.gpu.hot ? S.Theme.base08 : S.SystemStats.gpuTempC > S.Modules.gpu.warm ? S.Theme.base0A : S.Theme.base05
|
||||
}
|
||||
|
||||
Item {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue