feat: Enhance Plex Media Server management script with detailed status and loading animations

This commit is contained in:
Peter Wood
2025-05-25 23:50:45 -04:00
parent b8a3c98297
commit fbd0bf5852
3 changed files with 269 additions and 36 deletions

View File

@@ -6,7 +6,14 @@ alias gcm="git commit -m"
alias ll="ls -laFh --group-directories-first --color=auto"
alias findzombie="ps -A -ostat,pid,ppid | grep -e '[zZ]'"
# 🎬 Plex Media Server Management - Sexy Edition
alias plex="/home/acedanger/shell/plex.sh"
alias px="/home/acedanger/shell/plex.sh" # Quick shortcut
alias plex-start="/home/acedanger/shell/plex.sh start" # Start Plex
alias plex-stop="/home/acedanger/shell/plex.sh stop" # Stop Plex
alias plex-restart="/home/acedanger/shell/plex.sh restart" # Restart Plex
alias plex-status="/home/acedanger/shell/plex.sh status" # Status check
alias plex-web="xdg-open http://localhost:32400/web" # Open web UI in browser
alias update="/home/acedanger/shell/update.sh"
alias dcdn="docker compose down"
alias dcupd="docker compose up -d"