mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 05:29:42 +00:00
Add bottom
This commit is contained in:
parent
fbbb22a2d3
commit
d9e1fde88e
28
home/programs/terminal/tools/bottom.nix
Normal file
28
home/programs/terminal/tools/bottom.nix
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
# Yet another system monitor
|
||||||
|
{
|
||||||
|
programs.bottom = {
|
||||||
|
enable = false;
|
||||||
|
settings = {
|
||||||
|
flags.group_processes = true;
|
||||||
|
row = [
|
||||||
|
{
|
||||||
|
ratio = 2;
|
||||||
|
child = [
|
||||||
|
{type = "cpu";}
|
||||||
|
{type = "mem";}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
{
|
||||||
|
ratio = 3;
|
||||||
|
child = [
|
||||||
|
{
|
||||||
|
type = "proc";
|
||||||
|
ratio = 1;
|
||||||
|
default = true;
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
|
@ -9,5 +9,6 @@ _: {
|
||||||
./tealdeer.nix
|
./tealdeer.nix
|
||||||
./hyfetch.nix
|
./hyfetch.nix
|
||||||
./btop.nix
|
./btop.nix
|
||||||
|
./bottom.nix
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue