profiles/htop: update htop configuration

This commit is contained in:
Infinidoge 2021-11-11 00:24:51 -05:00
parent 651d751869
commit e7b9fffc51

View file

@ -2,9 +2,6 @@
programs.htop = { programs.htop = {
enable = true; enable = true;
settings = { settings = {
color_scheme = 0;
cpu_count_from_one = 0;
delay = 15;
fields = with config.lib.htop.fields; [ fields = with config.lib.htop.fields; [
PID PID
USER USER
@ -19,19 +16,32 @@
TIME TIME
COMM COMM
]; ];
color_scheme = 0;
cpu_count_from_one = 0;
delay = 15;
highlight_base_name = 1; highlight_base_name = 1;
highlight_megabytes = 1; highlight_megabytes = 1;
highlight_threads = 1; highlight_threads = 1;
find_comm_in_cmdline = 1;
tree_view = 1;
header_margin = 1;
show_cpu_usage = 1;
show_cpu_frequency = 1;
show_cpu_temperature = 1;
update_process_names = 1;
} // (with config.lib.htop; leftMeters [ } // (with config.lib.htop; leftMeters [
(bar "AllCPUs2") (bar "AllCPUs")
(bar "CPU")
]) // (with config.lib.htop; rightMeters [
(bar "Memory") (bar "Memory")
(bar "Swap") (bar "Swap")
(text "Zram") (text "Blank")
]) // (with config.lib.htop; rightMeters [
(text "Tasks") (text "Tasks")
(text "LoadAverage") (text "LoadAverage")
(text "Uptime") (text "Uptime")
(text "Systemd") (text "Systemd")
(text "DiskIO")
(text "NetworkIO")
]); ]);
}; };