From 18d16e5e81222cda195a7243151d092229ca56bb Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Tue, 17 Dec 2024 09:15:32 +0000 Subject: [PATCH] Update bottom styling --- system/home/shell/bottom.nix | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/system/home/shell/bottom.nix b/system/home/shell/bottom.nix index 0f03d896..e2ade74f 100644 --- a/system/home/shell/bottom.nix +++ b/system/home/shell/bottom.nix @@ -8,23 +8,36 @@ temperature_type = "celsius"; battery = true; enable_gpu = true; - enable_cache_memory = true; }; - colors = + styles = let scheme = config.lib.stylix.scheme.withHashtag; rainbow = with scheme; [ red + orange yellow green cyan blue magenta + brown ]; in { - cpu_core_colors = rainbow; - gpu_core_colors = rainbow; + cpu.cpu_core_colors = rainbow; + memory = { + ram_color = scheme.blue; + swap_color = scheme.green; + gpu_core_colors = rainbow; + }; + network = { + rx_color = scheme.blue; + tx_color = scheme.green; + }; + widgets = { + border_color = scheme.base04; + selected_border_color = scheme.base0E; + }; }; }; };