From 8bd8ec611f869aa56cae837a6775debd27568c32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Tue, 22 Dec 2020 09:29:13 +0100 Subject: [PATCH] fix(htop): dont show threads --- configs/htop.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configs/htop.nix b/configs/htop.nix index ff8c92d..d46bd89 100644 --- a/configs/htop.nix +++ b/configs/htop.nix @@ -9,14 +9,14 @@ detailedCpuTime = false; headerMargin = true; hideKernelThreads = true; - hideThreads = false; - hideUserlandThreads = false; + hideThreads = true; + hideUserlandThreads = true; highlightBaseName = true; highlightMegabytes = true; highlightThreads = true; shadowOtherUsers = true; showProgramPath = false; - showThreadNames = true; + showThreadNames = false; sortDescending = true; sortKey = "PERCENT_CPU"; treeView = true;