feat(btm): added current usage to the field

This commit is contained in:
kenji
2026-03-08 11:05:12 -05:00
parent c986952c50
commit 688f8e8a1e
+32
View File
@@ -2,6 +2,38 @@
programs.bottom = { programs.bottom = {
enable = true; enable = true;
settings = { settings = {
flags = {
rate = 1000;
hide_table_gap = true;
hide_time = true;
left_legend = true;
network_use_bytes = true;
temperature_type = "c";
mem_as_value = true;
current_usage = true;
};
row = [
{
ratio = 4;
child = [
{ type = "cpu"; }
];
}
{
ratio = 3;
child = [
{ type = "mem"; }
{ type = "net"; }
];
}
{
ratio = 3;
child = [
{ type = "temp"; }
{ type = "disk"; }
];
}
];
}; };
}; };
} }