mirror of https://gitlab.com/dabruh/dotfiles.git
37 lines
715 B
Plaintext
37 lines
715 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
# Verbosity and settings that you pretty much just always are going to want.
|
||
|
alias \
|
||
|
cp="cp -iv" \
|
||
|
mv="mv -iv" \
|
||
|
rm="rm -vI" \
|
||
|
bc="bc -ql" \
|
||
|
mkd="mkdir -pv" \
|
||
|
yt="yt-dlp --embed-metadata -i" \
|
||
|
yta="yt -x -f bestaudio/best" \
|
||
|
ffmpeg="ffmpeg -hide_banner"
|
||
|
|
||
|
# Kubernetes things
|
||
|
alias \
|
||
|
ctx="kubectl ctx" \
|
||
|
f='flux' \
|
||
|
h='helm' \
|
||
|
k='kubectl' \
|
||
|
v='velero'
|
||
|
|
||
|
# These common commands are just too long! Abbreviate them.
|
||
|
alias \
|
||
|
ka="killall" \
|
||
|
g="git" \
|
||
|
e="$EDITOR" \
|
||
|
p="pacman" \
|
||
|
z="zathura"
|
||
|
|
||
|
# Misc
|
||
|
alias \
|
||
|
tmux='tmux -f ~/.config/tmux/tmux.conf' \
|
||
|
df='df -h' \
|
||
|
free='free -m' \
|
||
|
r='ranger' \
|
||
|
w='curl https://wttr.in/'
|