window title option

This commit is contained in:
2025-09-29 11:02:48 +02:00
parent 1a24c4eb99
commit d9a176d4ec
4 changed files with 20 additions and 5 deletions

View File

@@ -82,17 +82,25 @@
default = false;
};
};
bar_height = lib.mkOption {
height = lib.mkOption {
type = lib.types.int;
default = 40;
description = "Height of the status bar in pixels";
};
window_title = {
enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Whether to show the window title in the center of the bar";
};
};
};
};
default = {
vinyl.enable = false;
battery.enable = false;
bar_height = 40;
height = 40;
window_title.enable = true;
};
};
};