From 9abb5fc83be0ac1e89b3e651bb0c1685a48a2778 Mon Sep 17 00:00:00 2001 From: Peter Wood Date: Wed, 28 May 2025 16:19:22 -0400 Subject: [PATCH] chore: Remove my-aliases.zsh as it is no longer needed --- dotfiles/my-aliases.zsh | 43 ----------------------------------------- 1 file changed, 43 deletions(-) delete mode 100644 dotfiles/my-aliases.zsh diff --git a/dotfiles/my-aliases.zsh b/dotfiles/my-aliases.zsh deleted file mode 100644 index dcff0a8..0000000 --- a/dotfiles/my-aliases.zsh +++ /dev/null @@ -1,43 +0,0 @@ -<<<<<<< HEAD -======= -alias py=python3 -alias gpull="git pull" -alias gpush="git push" -alias gc="git commit" -alias gcm="git commit -m" - -alias ll="ls -laFh --group-directories-first --color=auto" -alias findzombie="ps -A -ostat,pid,ppid | grep -e '[zZ]'" - -# 🌟 Eza aliases - Modern replacement for ls (conditionally enabled by setup.sh) -# These provide enhanced directory listing with icons, git status, and tree views -# The setup script will enable these dynamically if eza is available, otherwise traditional ls aliases are used -alias ls-eza="eza --color=auto --group-directories-first" -alias la-eza="eza -la --color=auto --group-directories-first" -alias ll-eza="eza -laFh --color=auto --group-directories-first" -alias l-eza="eza -1 --color=auto --group-directories-first" -alias lt="eza --tree --level=2 --color=auto --group-directories-first" # Tree view (2 levels) -alias llt="eza -la --tree --level=2 --color=auto --group-directories-first" # Long tree view -alias lg="eza -la --git --color=auto --group-directories-first" # Show git status -alias lh="eza -la --color=auto --group-directories-first --sort=size" # Sort by size -alias lr="eza -la --color=auto --group-directories-first --sort=modified" # Sort by modified -alias lx="eza -la --color=auto --group-directories-first --sort=extension" # Sort by extension -alias tree="eza --tree --color=auto --group-directories-first" # Tree alias - -# 🎬 Plex Media Server Management - Sexy Edition -alias plex="/home/acedanger/shell/plex/plex.sh" -alias px="/home/acedanger/shell/plex/plex.sh" # Quick shortcut -alias plex-start="/home/acedanger/shell/plex/plex.sh start" # Start Plex -alias plex-stop="/home/acedanger/shell/plex/plex.sh stop" # Stop Plex -alias plex-restart="/home/acedanger/shell/plex/plex.sh restart" # Restart Plex -alias plex-status="/home/acedanger/shell/plex/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" -alias dcpull="docker compose pull" -alias lzd="lazydocker" -alias cat="batcat" -alias fd="fdfind" -alias fzf="fzf --preview='batcat {}'" ->>>>>>> f7542cdb3fe600f7b5b09cb9c5bab173ec78697a