htop: improve config
authorJulien Moutinho <julm+julm-nix@sourcephile.fr>
Fri, 29 Oct 2021 21:21:35 +0000 (23:21 +0200)
committerJulien Moutinho <julm+julm-nix@sourcephile.fr>
Fri, 29 Oct 2021 22:19:59 +0000 (00:19 +0200)
homes/softwares/htop.nix

index cecb7a5b6ac786b51e5bf42137407c1ec8de989f..39d743d996470cd1f4fae265e771e5c49bfb64a7 100644 (file)
@@ -1,14 +1,50 @@
+{ lib, ...}:
 {
+# This must appear before "column_meters_*" options
+xdg.configFile."htop/htoprc".text = lib.mkBefore ''
+  header_layout=two_50_50
+'';
 programs.htop = {
   settings = {
-    cpu_count_from_one = 0;
+    account_guest_in_cpu_meter = false;
+    all_branches_collapsed = false;
+    color_scheme = false;
+    column_meter_modes_0 = "3 1 1 1";
+    column_meter_modes_1 = "2 2 2 1 1 1 1 1";
+    column_meters_0 = "AllCPUs Memory Swap Zram";
+    column_meters_1 = "Systemd LoadAverage Uptime DiskIO NetworkIO ZFSARC ZFSCARC PressureStallIOFull";
+    cpu_count_from_one = false;
+    degree_fahrenheit = false;
+    delay = 15;
+    detailed_cpu_time = true;
+    enable_mouse = true;
+    find_comm_in_cmdline = true;
+    header_margin = true;
+    hide_function_bar = false;
+    hide_kernel_threads = true;
     hide_threads = true;
-    right_meter_modes = "2 2 2 2 2";
-    right_meters = "LoadAverage Uptime ZFSARC ZFSCARC PressureStallIOFull";
+    hide_userland_threads = false;
+    highlight_base_name = true;
+    highlight_changes = false;
+    highlight_changes_delay_secs = 5;
+    highlight_deleted_exe = true;
+    highlight_megabytes = true;
+    highlight_threads = true;
+    shadow_other_users = false;
+    show_cpu_frequency = true;
+    show_cpu_temperature = false;
+    show_cpu_usage = true;
+    show_merged_command = false;
     show_program_path = false;
+    show_thread_names = false;
+    sort_direction = 1;
     sort_key = 46; # PERCENT_CPU
-    tree_view = true;
+    strip_exe_from_cmdline = true;
+    tree_sort_direction = 1;
     tree_sort_key = 46; # PERCENT_CPU
+    tree_view = true;
+    tree_view_always_by_pid = false;
+    update_process_names = false;
   };
 };
 }