From 97295856a378b9b2acb8ce9ad4133f88f547a833 Mon Sep 17 00:00:00 2001 From: Michael Bradley Date: Mon, 9 Jun 2025 00:11:18 -0400 Subject: [PATCH] Don't try to show GPU on framework btop --- bombadil.toml | 2 +- btop/btop.conf | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/bombadil.toml b/bombadil.toml index 02537e9..00e85ea 100644 --- a/bombadil.toml +++ b/bombadil.toml @@ -29,7 +29,7 @@ swww-daemon = { source = "systemd/swww-daemon.service", target = ".config/system wallpaper-service = { source = "systemd/wallpaper.service", target = ".config/systemd/user/wallpaper.service", direct = true } wallpaper-timer = { source = "systemd/wallpaper.timer", target = ".config/systemd/user/wallpaper.timer", direct = true } -btop = { source = "btop", target = ".config/btop", direct = true } +btop = { source = "btop", target = ".config/btop" } dunst = { source = "dunst", target = ".config/dunst", direct = true } eww = { source = "eww", target = ".config/eww" } fastfetch = { source = "fastfetch", target = ".config/fastfetch", direct = true } diff --git a/btop/btop.conf b/btop/btop.conf index 21233d7..d840976 100755 --- a/btop/btop.conf +++ b/btop/btop.conf @@ -50,7 +50,11 @@ graph_symbol_net = "default" graph_symbol_proc = "default" #* Manually set which boxes to show. Available values are "cpu mem net proc" and "gpu0" through "gpu5", separate values with whitespace. +{% if host.name == "chonk" %} shown_boxes = "proc cpu mem net gpu0" +{% else %} +shown_boxes = "cpu mem net proc" +{% endif %} #* Update time in milliseconds, recommended 2000 ms or above for better sample times for graphs. update_ms = 1500