dotfiles/.bash_aliases

19 lines
573 B
Bash
Raw Normal View History

#.dotfiles repo alias
alias config='/usr/bin/git --git-dir=$HOME/.dotfiles/ --work-tree=$HOME'
# show file sizes alias and sort by size
alias sizes='du -hs .[^.]* * | sort -h'
# tmux '-2' colors
alias tmux="tmux -2"
# bash tree alias
alias gittree="git log --all --decorate --oneline --graph"
2020-12-16 21:31:00 +08:00
# open spotify web client on firefox
2021-02-18 22:17:52 +08:00
alias spw="firefox --new-window https://open.spotify.com/ & exit"
2020-12-17 03:37:06 +08:00
# run pulsemixer
alias mixer="pulsemixer"
2020-12-31 02:43:41 +08:00
# turn screen off
alias screenoff="sleep 1; xset dpms force off"
# matlab
alias matlab="matlab & disown"
2021-03-06 22:03:04 +08:00
# bpytop
alias btop="bpytop"