From e55dcc25843095d87a7e986c7224063f9c77a3ac Mon Sep 17 00:00:00 2001 From: h7x4 Date: Sun, 4 May 2025 14:06:13 +0200 Subject: [PATCH] home/bottom: don't show temperature sensor data --- home/programs/bottom.nix | 38 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 36 insertions(+), 2 deletions(-) diff --git a/home/programs/bottom.nix b/home/programs/bottom.nix index 38ea549..f7d46d7 100644 --- a/home/programs/bottom.nix +++ b/home/programs/bottom.nix @@ -2,6 +2,40 @@ { programs.bottom = { enable = true; - settings.flags.enable_gpu = true; + settings = { + flags.enable_gpu = true; + + row = [ + { + ratio = 30; + child = [{ type = "cpu"; }]; + } + { + ratio = 40; + child = [ + { + ratio = 4; + type = "mem"; + } + { + ratio = 3; + type = "disk"; + } + ]; + } + { + ratio = 30; + child = [ + { + type = "net"; + } + { + default = true; + type = "proc"; + } + ]; + } + ]; + }; }; -} \ No newline at end of file +}