Don't try to show GPU on framework btop

This commit is contained in:
Michael Bradley 2025-06-09 00:11:18 -04:00
parent 8bee11d5fb
commit 97295856a3
Signed by: MichaelBradley
SSH key fingerprint: SHA256:BKO2eI2LPsCbQS3n3i5SdwZTAIV3F1lHezR07qP+Ob0
2 changed files with 5 additions and 1 deletions

View file

@ -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 }

View file

@ -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