Disable Noctalia plugins and refactor bar config
Comment out the Noctalia-shell plugins block in host modules, introduce a "main" section for bar settings, set the bar to disabled by default, and bump the Noctalia config version to 2.
This commit is contained in:
@@ -1,33 +1,37 @@
|
||||
_: {
|
||||
programs.noctalia.settings.bar = {
|
||||
enabled = true;
|
||||
background_opacity = 0.0;
|
||||
widget_spacing = 10;
|
||||
margin_ends = 0;
|
||||
scale = 0.95;
|
||||
font_family = "FiraCode Nerd Font";
|
||||
enabled = false;
|
||||
order = ["main"];
|
||||
"main" = {
|
||||
enabled = true;
|
||||
background_opacity = 0.0;
|
||||
widget_spacing = 10;
|
||||
margin_ends = 0;
|
||||
scale = 0.95;
|
||||
font_family = "FiraCode Nerd Font";
|
||||
|
||||
start = [
|
||||
"launcher"
|
||||
"spacer_2"
|
||||
"clock"
|
||||
"spacer_3"
|
||||
"cpu"
|
||||
"ram"
|
||||
"network_rx"
|
||||
"network_tx"
|
||||
"sysmon"
|
||||
];
|
||||
center = ["workspaces"];
|
||||
end = [
|
||||
"tray"
|
||||
"notifications"
|
||||
"bluetooth"
|
||||
"battery"
|
||||
"recorder"
|
||||
"volume"
|
||||
"network"
|
||||
"control-center"
|
||||
];
|
||||
start = [
|
||||
"launcher"
|
||||
"spacer_2"
|
||||
"clock"
|
||||
"spacer_3"
|
||||
"cpu"
|
||||
"ram"
|
||||
"network_rx"
|
||||
"network_tx"
|
||||
"sysmon"
|
||||
];
|
||||
center = ["workspaces"];
|
||||
end = [
|
||||
"tray"
|
||||
"notifications"
|
||||
"bluetooth"
|
||||
"battery"
|
||||
"recorder"
|
||||
"volume"
|
||||
"network"
|
||||
"control-center"
|
||||
];
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user