16 lines
215 B
Nix
16 lines
215 B
Nix
{ ... }:
|
|
{
|
|
programs.waybar.settings.mainBar = {
|
|
cpu = {
|
|
format = " {usage}%";
|
|
format-low = "";
|
|
states = {
|
|
low = 0;
|
|
working = 30;
|
|
high = 80;
|
|
};
|
|
interval = 5;
|
|
};
|
|
};
|
|
}
|