From f0d9c6a03cfe80e7e295acc3c0a5a8ffa56ac0b5 Mon Sep 17 00:00:00 2001 From: finga Date: Wed, 5 Jul 2023 16:54:49 +0200 Subject: [PATCH] zsh: Revert to show all stats As showing always all stats spams the display when completing change it back to 1 second. --- .zshrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.zshrc b/.zshrc index 1a84f7f..fe42b67 100644 --- a/.zshrc +++ b/.zshrc @@ -47,10 +47,10 @@ precmd() { . ~/.banner # Report CPU usage for commands running longer than 1 second -REPORTTIME=0 +REPORTTIME=1 -# Report Memory usage for commands running longer than 1 second -REPORTMEMORY=0 +# # Report Memory usage for commands running longer than 1 second +# REPORTMEMORY=1 # Format reports TIMEFMT="%J %U user %S system %P cpu %*E total, %X kB text space %D kB data/stack memory %M kB max. %K kB total, %O iops %I oops, %w waits %c ctx switches"