From 2b1f3930be3dbb420ecc0bd03db247038d4d4a99 Mon Sep 17 00:00:00 2001 From: Christian Baer Date: Mon, 20 Dec 2021 17:11:15 +0100 Subject: [PATCH] ZSH: Updated ls aliases --- .config/zsh/lib/20-aliases.zsh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.config/zsh/lib/20-aliases.zsh b/.config/zsh/lib/20-aliases.zsh index 646a91b..9d989d9 100644 --- a/.config/zsh/lib/20-aliases.zsh +++ b/.config/zsh/lib/20-aliases.zsh @@ -9,8 +9,8 @@ fi unfunction _exists -alias ls="ls -FGhkTv" -alias ll="ls -FGhkTvl" +alias ls="ls --color -FGhk" +alias ll="ls --color -FGhkl" alias mkdir="mkdir -p" alias ...="cd ../.." @@ -18,6 +18,7 @@ alias google="ping -c 10240000 google.com" alias history="history -i" alias sulast="sudo $(history -p !-1)" alias ydl="youtube-dl -f 'bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]/best'" +alias htop="sudo htop" case `uname` in Darwin) @@ -25,7 +26,6 @@ case `uname` in alias flushdns="sudo dscacheutil -flushcache; sudo killall -HUP mDNSResponder" alias r="open -a" alias fetch="curl -O" - alias htop="sudo htop" ;; Linux) # commands for Linux go here