[update] Add more aliases

This commit is contained in:
Anas Elgarhy 2023-04-15 04:49:20 +02:00
parent e60e06afcc
commit 0a95329df7
No known key found for this signature in database
GPG Key ID: 0501802A1D496528
1 changed files with 9 additions and 4 deletions

View File

@ -1,14 +1,12 @@
alias clear='clear && ufetch'
alias cls='/usr/bin/clear'
alias lsc='/usr/bin/ls --color=auto' # Default ls with colors
# alias ls='logo-ls -Dh' # Modern ls https://github.com/Yash-Handa/logo-ls
alias jls='jls -lh'
alias ls='jls'
alias cmus='cmus-rpc-rs --link &>/dev/null & /bin/cmus'
alias neofetch='neofetch --kitty /mnt/Data/Personalize/Wallpapers/anime --crop_mode fill --crop_offset center --xoffset 1 --yoffset 1'
alias neofetch='neofetch --kitty /mnt/Data/Personalize/Wallpapers --crop_mode fill --crop_offset center --xoffset 1 --yoffset 1'
alias nfe='neofetch'
# navigation
alias ~='cd ~'
alias cd..='cd ..'
alias ..='cd ..'
alias ...='cd ../..'
@ -16,6 +14,13 @@ alias .3='cd ../../..'
alias .4='cd ../../../..'
alias .5='cd ../../../../..'
# Show the current path with (jpwd)
alias .='jpwd'
# Edit something
alias e="$EDITOR"
alias r='bat'
# Colorize grep output (good for log files)
alias grep='grep --color=auto'