Update bottom styling
This commit is contained in:
parent
316d25cdc7
commit
18d16e5e81
|
@ -8,23 +8,36 @@
|
||||||
temperature_type = "celsius";
|
temperature_type = "celsius";
|
||||||
battery = true;
|
battery = true;
|
||||||
enable_gpu = true;
|
enable_gpu = true;
|
||||||
enable_cache_memory = true;
|
|
||||||
};
|
};
|
||||||
colors =
|
styles =
|
||||||
let
|
let
|
||||||
scheme = config.lib.stylix.scheme.withHashtag;
|
scheme = config.lib.stylix.scheme.withHashtag;
|
||||||
rainbow = with scheme; [
|
rainbow = with scheme; [
|
||||||
red
|
red
|
||||||
|
orange
|
||||||
yellow
|
yellow
|
||||||
green
|
green
|
||||||
cyan
|
cyan
|
||||||
blue
|
blue
|
||||||
magenta
|
magenta
|
||||||
|
brown
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
cpu_core_colors = rainbow;
|
cpu.cpu_core_colors = rainbow;
|
||||||
gpu_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;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue