mirror of
https://github.com/acedanger/shell.git
synced 2025-12-06 02:20:11 -08:00
38 lines
1.1 KiB
Plaintext
38 lines
1.1 KiB
Plaintext
alias py=python3
|
|
alias gpull="git pull"
|
|
alias gpush="git push"
|
|
alias gc="git commit"
|
|
alias gcm="git commit -m"
|
|
|
|
alias findzombie="ps -A -ostat,pid,ppid | grep -e '[zZ]'"
|
|
|
|
# 🎬 Plex Media Server Management
|
|
alias plex="/home/acedanger/shell/plex/plex.sh"
|
|
alias px="/home/acedanger/shell/plex/plex.sh" # Quick shortcut
|
|
|
|
# 🐳 Docker Compose Shortcuts
|
|
alias dcdn="docker compose down"
|
|
alias dcupd="docker compose up -d"
|
|
alias dcpull="docker compose pull"
|
|
|
|
alias lzd="lazydocker"
|
|
alias lzg="lazygit"
|
|
|
|
# 🔧 Backup Management
|
|
alias backup-tui="/home/acedanger/shell/backup-tui"
|
|
alias btui="/home/acedanger/shell/backup-tui"
|
|
alias backup-manager="/home/acedanger/shell/backup-tui"
|
|
|
|
# 🔧 System Management
|
|
alias update="/home/acedanger/shell/update.sh"
|
|
|
|
# 🤖 AI & Development Tools
|
|
alias gm="gemini"
|
|
alias gemini-cli="gemini"
|
|
|
|
# Note: The following aliases are dynamically generated by setup.sh based on available commands:
|
|
# - cat/bat aliases (batcat vs bat)
|
|
# - fd aliases (fdfind vs fd)
|
|
# - fzf preview aliases
|
|
# - ls/eza aliases (eza vs traditional ls)
|