dotfiles

My personal shell configs and stuff
git clone git://git.alex.balgavy.eu/dotfiles.git
Log | Files | Refs | Submodules | README | LICENSE

commit ea8ef3866b8fa2f532ff5c0aeb78167398c21028
parent e154843e45867a3b7c5a2e69f314c76e9ea24ea7
Author: Alex Balgavy <a.balgavy@gmail.com>
Date:   Tue, 20 Mar 2018 01:13:23 +0100

Aliased top to htop because top is easier to type

Diffstat:
M.commonprofile | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/.commonprofile b/.commonprofile @@ -7,6 +7,7 @@ alias mv='mv -iv' # Preferred 'mv' implementation alias mkdir='mkdir -pv' # Preferred 'mkdir' implementation alias l="ls -FGlAhp" # Preferred 'ls' implementation alias less='less -FRXc' +alias top='sudo htop' cd() { builtin cd "$@"; ls; } mkcd() { mkdir -p -- "$1" && cd -P -- "$1" } procinfo() { ps -aux | grep $1 }