22 lines
335 B
Nix
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;
|
|
};
|
|
};
|
|
}
|