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
|
||||
})
|
||||
property var bluetooth: ({
|
||||
enable: true,
|
||||
interval: 5000
|
||||
enable: true
|
||||
})
|
||||
property var backlight: ({
|
||||
enable: true,
|
||||
step: 5
|
||||
})
|
||||
property var network: ({
|
||||
enable: true,
|
||||
interval: 5000
|
||||
enable: true
|
||||
})
|
||||
property var powerProfile: ({
|
||||
enable: true,
|
||||
interval: 5000
|
||||
enable: true
|
||||
})
|
||||
property var idleInhibitor: ({
|
||||
enable: true
|
||||
|
|
@ -63,12 +60,10 @@ QtObject {
|
|||
hot: 90
|
||||
})
|
||||
property var cpu: ({
|
||||
enable: true,
|
||||
interval: 1000
|
||||
enable: true
|
||||
})
|
||||
property var memory: ({
|
||||
enable: true,
|
||||
interval: 2000
|
||||
enable: true
|
||||
})
|
||||
property var disk: ({
|
||||
enable: true,
|
||||
|
|
|
|||
|
|
@ -84,6 +84,11 @@ in
|
|||
"clock"
|
||||
"mpris"
|
||||
"volume"
|
||||
"bluetooth"
|
||||
"network"
|
||||
"powerProfile"
|
||||
"cpu"
|
||||
"memory"
|
||||
"idleInhibitor"
|
||||
"power"
|
||||
"backgroundOverlay"
|
||||
|
|
@ -114,11 +119,6 @@ in
|
|||
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);
|
||||
backlight = moduleOpt "backlight" {
|
||||
step = lib.mkOption {
|
||||
|
|
@ -177,7 +177,7 @@ in
|
|||
description = ''
|
||||
Theme overrides written to `$XDG_CONFIG_HOME/nova-shell/theme.json`.
|
||||
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.
|
||||
'';
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue