2024-07-10 11:44:45 -04:00
|
|
|
alias f="$(pay-respects zsh)"
|
|
|
|
alias wtf="navi"
|
|
|
|
alias help="navi"
|
|
|
|
alias rzsh="source ~/.zshrc && echo 'Successfully reloaded zsh!'"
|
2024-10-07 12:03:35 -04:00
|
|
|
alias aliases="${EDITOR} $ZSH_CUSTOM/aliases.zsh && rzsh"
|
|
|
|
alias zshrc="${EDITOR} ~/.zshrc && rzsh"
|
2024-07-10 12:19:02 -04:00
|
|
|
alias zshconfig="zshrc"
|
2024-10-07 12:03:35 -04:00
|
|
|
alias zshcustom="${EDITOR} $ZSH_CUSTOM && rzsh"
|
|
|
|
alias ohmyzsh="${EDITOR} ~/.oh-my-zsh && rzsh"
|
|
|
|
alias vi="${EDITOR}"
|
|
|
|
alias vim="${EDITOR}"
|
|
|
|
alias nano="${EDITOR}"
|
2024-07-10 11:44:45 -04:00
|
|
|
alias neofetch="fastfetch"
|
|
|
|
alias nf="fastfetch"
|
|
|
|
alias ff="fastfetch"
|
|
|
|
alias uf="uwufetch"
|
|
|
|
alias aur="yay"
|
2024-07-12 22:48:37 -04:00
|
|
|
# this lists packages installed with pacman by size in mebibytes
|
2024-07-12 22:47:07 -04:00
|
|
|
alias pacsize="pacman -Qi | egrep '^(Name|Installed)' | cut -f2 -d':' | paste - - | column -t | sort -nrk 2 | grep MiB | less"
|
2024-07-21 19:47:44 -04:00
|
|
|
alias lg="lazygit"
|
2024-09-21 10:04:02 -04:00
|
|
|
alias lad="lazydocker"
|
2024-07-10 11:44:45 -04:00
|
|
|
alias htop="btop"
|
2024-10-07 11:46:11 -04:00
|
|
|
if [[ "${XDG_SESSION_TYPE}" == "x11" ]]; then
|
|
|
|
alias clip="xsel -ib"
|
|
|
|
elif [[ -n "${WAYLAND_DISPLAY}" ]]; then
|
|
|
|
alias clip="wl-copy"
|
|
|
|
else
|
|
|
|
alias clip='echo "Cannot determine desktop session type, are you running a display server that is not X11 or Wayland?"'
|
|
|
|
fi
|
2024-07-10 11:44:45 -04:00
|
|
|
alias driver="nvidia-smi"
|
|
|
|
alias gpu="sudo nvidia-settings"
|
2024-07-29 02:52:04 -04:00
|
|
|
alias yaystats="yay -P --stats"
|
|
|
|
alias pacstats="yaystats"
|
2024-07-29 23:49:58 -04:00
|
|
|
alias taildrop="tailscale file"
|
2024-08-19 02:32:29 -04:00
|
|
|
alias protontricks="flatpak run com.github.Matoking.protontricks"
|
2024-10-07 11:46:11 -04:00
|
|
|
alias sober="flatpak run org.vinegarhq.Sober"
|
2024-09-19 15:59:21 -04:00
|
|
|
alias runactions="forgejo-runner exec --default-actions-url https://www.coastalcommits.com --gitea-instance https://www.coastalcommits.com"
|
2024-07-10 11:44:45 -04:00
|
|
|
alias sudo="sudo "
|