dotfiles/.bash_aliases
2021-08-17 19:26:38 +08:00

35 lines
656 B
Bash

#
# CLI
#
# use doas instead of sudo
alias sudo='doas'
#.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'
# bash tree alias
alias gittree="git log --all --decorate --oneline --graph"
# turn screen off
alias screenoff="sleep 1; xset dpms force off"
#
# TUI
#
# run pulsemixer
alias mixer="pulsemixer"
# use nvim instead of vim
alias vim="nvim"
#
# GUI
#
# tmux '-2' colors
alias tmux="tmux -2"
# bpytop
alias btop="bpytop"
# open spotify web client on firefox
alias spw="firefox --new-window https://open.spotify.com/ & exit"