nix-config/modules/niri/waybar.conf.nix
2025-02-28 19:32:44 +01:00

22 lines
333 B
Nix

{...}: {
mainBar = {
layer = "top";
position = "top";
modules-center = [
"battery"
];
"battery" = {
states = {
better = 75;
good = 50;
bad = 25;
worse = 10;
worst = 5;
};
format = " ";
format-alt = " ";
tooltip = false;
};
};
}