bashrc aliases
This commit is contained in:
parent
9bb85c1faa
commit
1317bd49fa
|
@ -90,12 +90,21 @@ fi
|
||||||
|
|
||||||
unset use_color safe_term match_lhs sh
|
unset use_color safe_term match_lhs sh
|
||||||
|
|
||||||
|
# aliases
|
||||||
|
alias python="python3"
|
||||||
alias cp="cp -i" # confirm before overwriting something
|
alias cp="cp -i" # confirm before overwriting something
|
||||||
alias df='df -h' # human-readable sizes
|
alias df='df -h' # human-readable sizes
|
||||||
alias free='free -m' # show sizes in MB
|
alias free='free -m' # show sizes in MB
|
||||||
alias np='nano -w PKGBUILD'
|
alias np='nano -w PKGBUILD'
|
||||||
alias more=less
|
alias more="less"
|
||||||
alias rofi='rofi -m 1'
|
alias rofi='rofi -m 1'
|
||||||
|
alias weather="curl wttr.in"
|
||||||
|
alias ls="exa -lhg --group-directories-first"
|
||||||
|
alias ll="exa -lhga --group-directories-first"
|
||||||
|
alias vim="nvim"
|
||||||
|
alias docs="python ~/scripts/stock_price.py -s docs"
|
||||||
|
alias stock="python ~/scripts/stock_price.py -s "
|
||||||
|
alias cls="clear & ls"
|
||||||
|
|
||||||
xhost +local:root > /dev/null 2>&1
|
xhost +local:root > /dev/null 2>&1
|
||||||
|
|
||||||
|
@ -139,9 +148,5 @@ ex ()
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
alias weather="curl wttr.in"
|
|
||||||
alias ll="ls -la"
|
|
||||||
|
|
||||||
EDITOR=vim
|
|
||||||
|
|
||||||
pfetch
|
pfetch
|
||||||
|
|
Loading…
Reference in New Issue