Home

dotnix @896eb3f99d0d4dc0fed70ed79a7129531570d7ca - refs - log -
-
https://git.jolheiser.com/dotnix.git
My nix dotfiles
dotnix / apps / bottom.nix
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
  programs.bottom = {
    enable = true;
    settings = {
      colors = {
        table_header_color = "#f5e0dc";
        all_cpu_color = "#f5e0dc";
        avg_cpu_color = "#eba0ac";
        cpu_core_colors =
          [ "#f38ba8" "#fab387" "#f9e2af" "#a6e3a1" "#74c7ec" "#cba6f7" ];
        ram_color = "#a6e3a1";
        swap_color = "#fab387";
        rx_color = "#a6e3a1";
        tx_color = "#f38ba8";
        widget_title_color = "#f2cdcd";
        border_color = "#585b70";
        highlighted_border_color = "#f5c2e7";
        text_color = "#cdd6f4";
        graph_color = "#a6adc8";
        cursor_color = "#f5c2e7";
        selected_text_color = "#11111b";
        selected_bg_color = "#cba6f7";
        high_battery_color = "#a6e3a1";
        medium_battery_color = "#f9e2af";
        low_battery_color = "#f38ba8";
        gpu_core_colors =
          [ "#74c7ec" "#cba6f7" "#f38ba8" "#fab387" "#f9e2af" "#a6e3a1" ];
        arc_color = "#89dceb";
      };
    };
  };
}