feat: add zenith specific modifications to noctalia
This commit is contained in:
@@ -8,11 +8,23 @@ let
|
|||||||
mkPortableSettings =
|
mkPortableSettings =
|
||||||
baseSettings:
|
baseSettings:
|
||||||
lib.recursiveUpdate baseSettings {
|
lib.recursiveUpdate baseSettings {
|
||||||
bar.widgets.right = baseSettings.bar.widgets.right ++ [
|
bar.widgets.right = lib.concatMap (
|
||||||
{
|
widget:
|
||||||
id = "Battery";
|
if widget.id == "ControlCenter" then
|
||||||
}
|
[
|
||||||
];
|
{
|
||||||
|
id = "Network";
|
||||||
|
}
|
||||||
|
{
|
||||||
|
id = "Battery";
|
||||||
|
showPowerProfiles = true;
|
||||||
|
displayMode = "graphic";
|
||||||
|
}
|
||||||
|
widget
|
||||||
|
]
|
||||||
|
else
|
||||||
|
[ widget ]
|
||||||
|
) baseSettings.bar.widgets.right;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user