nixos/home/bottom/default.nix

32 lines
887 B
Nix
Raw Normal View History

{config, ...}: {
programs.bottom = {
enable = true;
settings.colors = with config.lib.stylix.colors.withHashtag; let
rainbow = [red yellow green cyan blue magenta];
in {
table_header_color = base05;
2024-02-16 10:19:35 +00:00
all_cpu_color = base05;
avg_cpu_color = base05;
cpu_core_colors = rainbow;
2024-02-16 10:19:35 +00:00
ram_color = base08;
cache_color = base0B;
swap_color = base0D;
rx_color = base0B;
tx_color = base08;
widget_title_color = base0C;
border_color = base02;
highlighted_border_color = base0E;
text_color = base05;
graph_color = base04;
cursor_color = base02;
selected_text_color = base05;
selected_bg_color = base01;
high_battery_color = base0B;
medium_battery_color = base0A;
low_battery_color = base08;
gpu_core_colors = rainbow;
arc_color = base0C;
};
};
}