feat(bottom): create package module with theme
This commit is contained in:
parent
ec0d6928b0
commit
4bb49ae510
3 changed files with 79 additions and 1 deletions
|
|
@ -7,6 +7,7 @@
|
||||||
# keep-sorted start
|
# keep-sorted start
|
||||||
"agenix"
|
"agenix"
|
||||||
"bat"
|
"bat"
|
||||||
|
"bottom"
|
||||||
"delta"
|
"delta"
|
||||||
"eza"
|
"eza"
|
||||||
"fish"
|
"fish"
|
||||||
|
|
|
||||||
78
modules/home-manager/features/bottom.nix
Normal file
78
modules/home-manager/features/bottom.nix
Normal file
|
|
@ -0,0 +1,78 @@
|
||||||
|
{
|
||||||
|
programs.bottom = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
flags = {
|
||||||
|
group_processes = true;
|
||||||
|
process_memory_as_value = true;
|
||||||
|
};
|
||||||
|
styles = {
|
||||||
|
cpu = {
|
||||||
|
all_entry_color = "#f5e0dc";
|
||||||
|
avg_entry_color = "#eba0ac";
|
||||||
|
cpu_core_colors = [
|
||||||
|
"#f38ba8"
|
||||||
|
"#fab387"
|
||||||
|
"#f9e2af"
|
||||||
|
"#a6e3a1"
|
||||||
|
"#74c7ec"
|
||||||
|
"#cba6f7"
|
||||||
|
];
|
||||||
|
};
|
||||||
|
memory = {
|
||||||
|
ram_color = "#a6e3a1";
|
||||||
|
cache_color = "#f38ba8";
|
||||||
|
swap_color = "#fab387";
|
||||||
|
gpu_colors = [
|
||||||
|
"#74c7ec"
|
||||||
|
"#cba6f7"
|
||||||
|
"#f38ba8"
|
||||||
|
"#fab387"
|
||||||
|
"#f9e2af"
|
||||||
|
"#a6e3a1"
|
||||||
|
];
|
||||||
|
arc_color = "#89dceb";
|
||||||
|
};
|
||||||
|
network = {
|
||||||
|
rx_color = "#a6e3a1";
|
||||||
|
tx_color = "#f38ba8";
|
||||||
|
rx_total_color = "#89dceb";
|
||||||
|
tx_total_color = "#a6e3a1";
|
||||||
|
};
|
||||||
|
battery = {
|
||||||
|
high_battery_color = "#a6e3a1";
|
||||||
|
medium_battery_color = "#f9e2af";
|
||||||
|
low_battery_color = "#f38ba8";
|
||||||
|
};
|
||||||
|
tables = {
|
||||||
|
headers = {
|
||||||
|
color = "#f5e0dc";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
graphs = {
|
||||||
|
graph_color = "#a6adc8";
|
||||||
|
legend_text = {
|
||||||
|
color = "#a6adc8";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
widgets = {
|
||||||
|
border_color = "#585b70";
|
||||||
|
selected_border_color = "#f5c2e7";
|
||||||
|
widget_title = {
|
||||||
|
color = "#f2cdcd";
|
||||||
|
};
|
||||||
|
text = {
|
||||||
|
color = "#cdd6f4";
|
||||||
|
};
|
||||||
|
selected_text = {
|
||||||
|
color = "#11111b";
|
||||||
|
bg_color = "#cba6f7";
|
||||||
|
};
|
||||||
|
disabled_text = {
|
||||||
|
color = "#1e1e2e";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -24,7 +24,6 @@
|
||||||
with pkgs;
|
with pkgs;
|
||||||
[
|
[
|
||||||
# keep-sorted start
|
# keep-sorted start
|
||||||
bottom # top
|
|
||||||
broot # large directory browser
|
broot # large directory browser
|
||||||
choose # cut
|
choose # cut
|
||||||
circumflex # hacker news browsing
|
circumflex # hacker news browsing
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue