25 lines
1.0 KiB
Bash
25 lines
1.0 KiB
Bash
# Aliases
|
|
alias cat='bat'
|
|
alias clean-aurutils-cache='find ~/.cache/aurutils/sync -type d -name .git -execdir git clean -xi \;'
|
|
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
|
|
alias cookie='fortune /usr/share/fortune/asoiaf /usr/share/fortune/startrek | cowthink -f $(find /usr/share/cowsay/cows -type f | shuf -n 1)'
|
|
alias fastfetch='hyfetch'
|
|
alias ghc='stack ghc'
|
|
alias ghci='stack ghci'
|
|
alias hoogle='stack hoogle'
|
|
alias ls='eza --icons --group-directories-first'
|
|
alias mutt='bash -c "pushd ~/Downloads > /dev/null; mutt; popd > /dev/null"'
|
|
alias rm='rm -I'
|
|
alias runhaskell='stack runhaskell'
|
|
alias sort='sort -n'
|
|
alias ssh='kitten ssh'
|
|
alias sudo='doas'
|
|
alias sudoedit='doas rvim'
|
|
alias trayer='trayer -l --edge top --align right --SetDockType true --SetPartialStrut true --expand true --widthtype request --transparent true --tint 0x232634 --height 18 --monitor 1'
|
|
alias trc='trash-empty'
|
|
alias trl='trash-list'
|
|
alias trm='trash-rm'
|
|
alias trp='trash-put'
|
|
alias trr='trash-restore'
|
|
alias vi='vim'
|