.dotfiles/zsh/alias

96 lines
2.3 KiB
Plaintext

#--------------------------------
# filename: /zsh/alias
#--------------------------------
# Better LS
if [[ $platform == 'Linux' ]]; then
alias bls='pwd; ls -lahp --color=auto --group-directories-first'
elif [[ $platform == 'macOS' && -x $(which gls) ]]; then
alias bls='pwd; gls -lahpG --group-directories-first'
elif [[ $platform == 'macOS' ]]; then
alias bls='/bin/ls -lahG'
fi
# Better eza
if [[ -x $(which eza) ]]; then
alias eza='pwd; eza --long --all --all --group-directories-first --git --group'
# --all (2x) to show `.` and `..` directories as well
fi
# Better lsd
if [[ -x $(which lsd) ]]; then
alias lsd='pwd; lsd -laF --group-dirs=first --icon=never'
fi
# Update tools/OS aliases
if [[ -x $(which brew) ]]; then
alias brewupdate='brew update; brew upgrade; brew upgrade --cask; brew cleanup'
fi
if [[ $platform == 'Linux' ]]; then
alias aptupdate='sudo apt update && sudo apt upgrade -y && sudo apt autoremove -y && sudo apt clean'
fi
# tmux
alias tm='tmux -u new -A -s default'
# For fun
alias fucking='sudo'
alias please='sudo'
# aria2c
alias a2='aria2c -x4 -c -m3'
# screen reconnect/init
alias sc='screen -R'
# youtube-dl / yt-dlp
if [[ -x $(which yt-dlp) ]]; then
alias ydl='yt-dlp'
elif [[ -x $(which youtube-dl) ]]; then
alias ydl='youtube-dl'
fi
# youtube-dl(p) - Download only best MP4
alias ytmp4='ydl -f "bestvideo[ext=mp4]+bestaudio[ext=m4a]/mp4"'
# better scp
alias bcp='rsync -avzuh --progress --partial'
# generate pseudo-random hash
alias random32='echo $(date +%s | md5sum | head -c 32)'
# tar extract
alias untargz='tar -xzvf'
# (macOS) start Firefox Profile manager
if test -x '/Applications/Firefox.app/Contents/MacOS/firefox-bin'; then
alias firefox-pm='/Applications/Firefox.app/Contents/MacOS/firefox-bin -P'
fi
# zspotify (Docker)
alias zspotify='docker run -v ${HOME}/.zspotify:/root/.zspotify -v ${HOME}/Music:/root/Music -it jsavargas/zspotify'
# git
alias gadd='git add'
alias gclone='git clone'
alias gpull='git pull'
alias gpush='git push'
alias gcommit='git commit -m'
# docker
alias dcdu='docker compose down && docker compose up -d'
# linux stuff
alias journ='journalctl -xfe -t'
# own this dir (+subs)
alias makeitmine='sudo chown -R $(whoami) ./'
# ---
# .dotfiles
alias dotf='cd ~/.dotfiles'
alias dotfu='cd ~/.dotfiles; git pull; cd -; source ~/.zshrc'
alias reload-zsh='source ~/.zshrc'