From cf9d12a7c9cf21b31dd33af7f6d9d5e4329aecb1 Mon Sep 17 00:00:00 2001 From: Chirag Jain Date: Tue, 20 Jan 2015 00:20:19 +0530 Subject: [PATCH] Fixed topc and topm aliases --- modules/utility/init.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/utility/init.zsh b/modules/utility/init.zsh index a32e5f39..fb99d902 100644 --- a/modules/utility/init.zsh +++ b/modules/utility/init.zsh @@ -146,8 +146,8 @@ alias du='du -kh' if (( $+commands[htop] )); then alias top=htop else - alias topc='top -o cpu' - alias topm='top -o vsize' + alias topc='top -o %CPU' + alias topm='top -o %MEM' fi # Miscellaneous