Evie Litherland-Smith
ba9411fb9f
Move git, starship and btm expressions to own files Move account dir expressions up a level, remove accounts dir Clean up some unused expressions (like qutebrowser and firefox)
29 lines
884 B
Nix
29 lines
884 B
Nix
{config, ...}: {
|
|
programs.bottom = {
|
|
enable = true;
|
|
settings.colors = with config.lib.stylix.colors.withHashtag; {
|
|
table_header_color = base06;
|
|
all_cpu_color = base06;
|
|
avg_cpu_color = "#eba0ac";
|
|
cpu_core_colors = [base08 base09 base0A base0B "#74c7ec" base0E];
|
|
ram_color = base0B;
|
|
swap_color = base09;
|
|
rx_color = base0B;
|
|
tx_color = base08;
|
|
widget_title_color = base0F;
|
|
border_color = base02;
|
|
highlighted_border_color = base07;
|
|
text_color = base04;
|
|
graph_color = "#a6adc8";
|
|
cursor_color = "#f5c2e7";
|
|
selected_text_color = base05;
|
|
selected_bg_color = base0E;
|
|
high_battery_color = base0B;
|
|
medium_battery_color = base0A;
|
|
low_battery_color = base08;
|
|
gpu_core_colors = ["#74c7ec" base0E base08 base09 base0A base0B];
|
|
arc_color = "#89dceb";
|
|
};
|
|
};
|
|
}
|