remove unused interval options from bluetooth, network, powerprofile, cpu, memory modules
This commit is contained in:
parent
25c2ed1021
commit
6eb36b86c9
2 changed files with 11 additions and 16 deletions
|
|
@ -33,20 +33,17 @@ QtObject {
|
||||||
enable: true
|
enable: true
|
||||||
})
|
})
|
||||||
property var bluetooth: ({
|
property var bluetooth: ({
|
||||||
enable: true,
|
enable: true
|
||||||
interval: 5000
|
|
||||||
})
|
})
|
||||||
property var backlight: ({
|
property var backlight: ({
|
||||||
enable: true,
|
enable: true,
|
||||||
step: 5
|
step: 5
|
||||||
})
|
})
|
||||||
property var network: ({
|
property var network: ({
|
||||||
enable: true,
|
enable: true
|
||||||
interval: 5000
|
|
||||||
})
|
})
|
||||||
property var powerProfile: ({
|
property var powerProfile: ({
|
||||||
enable: true,
|
enable: true
|
||||||
interval: 5000
|
|
||||||
})
|
})
|
||||||
property var idleInhibitor: ({
|
property var idleInhibitor: ({
|
||||||
enable: true
|
enable: true
|
||||||
|
|
@ -63,12 +60,10 @@ QtObject {
|
||||||
hot: 90
|
hot: 90
|
||||||
})
|
})
|
||||||
property var cpu: ({
|
property var cpu: ({
|
||||||
enable: true,
|
enable: true
|
||||||
interval: 1000
|
|
||||||
})
|
})
|
||||||
property var memory: ({
|
property var memory: ({
|
||||||
enable: true,
|
enable: true
|
||||||
interval: 2000
|
|
||||||
})
|
})
|
||||||
property var disk: ({
|
property var disk: ({
|
||||||
enable: true,
|
enable: true,
|
||||||
|
|
|
||||||
|
|
@ -84,6 +84,11 @@ in
|
||||||
"clock"
|
"clock"
|
||||||
"mpris"
|
"mpris"
|
||||||
"volume"
|
"volume"
|
||||||
|
"bluetooth"
|
||||||
|
"network"
|
||||||
|
"powerProfile"
|
||||||
|
"cpu"
|
||||||
|
"memory"
|
||||||
"idleInhibitor"
|
"idleInhibitor"
|
||||||
"power"
|
"power"
|
||||||
"backgroundOverlay"
|
"backgroundOverlay"
|
||||||
|
|
@ -114,11 +119,6 @@ in
|
||||||
description = "Maximum notifications kept in history (-1 for unlimited).";
|
description = "Maximum notifications kept in history (-1 for unlimited).";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
bluetooth = moduleOpt "bluetooth" (intervalOpt 5000);
|
|
||||||
network = moduleOpt "network" (intervalOpt 5000);
|
|
||||||
powerProfile = moduleOpt "powerProfile" (intervalOpt 5000);
|
|
||||||
cpu = moduleOpt "cpu" (intervalOpt 1000);
|
|
||||||
memory = moduleOpt "memory" (intervalOpt 2000);
|
|
||||||
disk = moduleOpt "disk" (intervalOpt 30000);
|
disk = moduleOpt "disk" (intervalOpt 30000);
|
||||||
backlight = moduleOpt "backlight" {
|
backlight = moduleOpt "backlight" {
|
||||||
step = lib.mkOption {
|
step = lib.mkOption {
|
||||||
|
|
@ -177,7 +177,7 @@ in
|
||||||
description = ''
|
description = ''
|
||||||
Theme overrides written to `$XDG_CONFIG_HOME/nova-shell/theme.json`.
|
Theme overrides written to `$XDG_CONFIG_HOME/nova-shell/theme.json`.
|
||||||
Keys: colors (base00-base0F), fontFamily, iconFontFamily, fontSize,
|
Keys: colors (base00-base0F), fontFamily, iconFontFamily, fontSize,
|
||||||
barOpacity, barHeight, barPadding, barSpacing, moduleSpacing, radius.
|
barOpacity, barHeight, barPadding, groupSpacing, moduleSpacing, radius, screenRadius.
|
||||||
Automatically populated from stylix when it is available.
|
Automatically populated from stylix when it is available.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue