Add aliases
parent
2b17e4bfc3
commit
fc56152e80
4
.aliasrc
4
.aliasrc
|
@ -5,7 +5,6 @@ alias ..="cd .."
|
|||
alias ...="cd ../.."
|
||||
|
||||
# Colorize output
|
||||
|
||||
alias ls="ls --color=auto"
|
||||
alias grep="grep --color=auto"
|
||||
alias ip='ip --color'
|
||||
|
@ -17,6 +16,8 @@ alias la='ls -lha'
|
|||
alias lgrep='l . | grep'
|
||||
alias lagrep='la . | grep'
|
||||
|
||||
# Pretty print path variables
|
||||
alias path='echo -e ${PATH//:/\\n}'
|
||||
|
||||
alias fzfpac="pacman -Slq | fzf -m --preview 'pacman -Si {1}' | xargs -ro sudo pacman -S"
|
||||
|
||||
|
@ -34,3 +35,4 @@ alias now='date "+%I:%M %a %d %b"'
|
|||
alias spot='ncspot'
|
||||
alias todo='todoist'
|
||||
alias weather='curl wttr.in'
|
||||
alias zzz='systemctl suspend && exit'
|
||||
|
|
Loading…
Reference in New Issue