nix-config/modules/niri/waybar.conf.nix
2024-08-23 16:36:16 +02:00

22 lines
335 B
Nix

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