From 688f8e8a1e57c138ec20a3dcf26502ffba13aecd Mon Sep 17 00:00:00 2001 From: kenji Date: Sun, 8 Mar 2026 11:05:12 -0500 Subject: [PATCH] feat(btm): added current usage to the field --- apps/bottom/default.nix | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) diff --git a/apps/bottom/default.nix b/apps/bottom/default.nix index 5103ed3..5a85b55 100644 --- a/apps/bottom/default.nix +++ b/apps/bottom/default.nix @@ -2,6 +2,38 @@ programs.bottom = { enable = true; 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"; } + ]; + } + ]; }; }; }