temperature thresholds: warm 80, hot 90
This commit is contained in:
parent
c973bd8163
commit
28fb0e4d00
2 changed files with 4 additions and 4 deletions
|
|
@ -55,8 +55,8 @@ QtObject {
|
|||
property var temperature: ({
|
||||
enable: true,
|
||||
interval: 2000,
|
||||
warm: 60,
|
||||
hot: 80
|
||||
warm: 80,
|
||||
hot: 90
|
||||
})
|
||||
property var cpu: ({
|
||||
enable: true,
|
||||
|
|
|
|||
|
|
@ -109,12 +109,12 @@ in
|
|||
// {
|
||||
warm = lib.mkOption {
|
||||
type = lib.types.int;
|
||||
default = 60;
|
||||
default = 80;
|
||||
description = "Temperature threshold for warm state (°C).";
|
||||
};
|
||||
hot = lib.mkOption {
|
||||
type = lib.types.int;
|
||||
default = 80;
|
||||
default = 90;
|
||||
description = "Temperature threshold for hot state (°C).";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue