From 9a86eb1758b05c0f14890d1cb6ae088ffa7cb30b Mon Sep 17 00:00:00 2001 From: unix-axwell <30478004+unix-axwell@users.noreply.github.com> Date: Wed, 7 May 2025 08:06:59 +0000 Subject: [PATCH] Update run.sh --- run.sh | 27 +++++++++++++++++---------- 1 file changed, 17 insertions(+), 10 deletions(-) diff --git a/run.sh b/run.sh index fc7cfb1..24fd649 100644 --- a/run.sh +++ b/run.sh @@ -10,17 +10,24 @@ sudo apt install -y nala #Packages Install sudo nala install -y tldr mc ranger ncdu tmux btop neofetch -#Bash configuration -echo "alias ttn='tmux new -s' >> ~/.bashrc" -echo "alias tta='tmux attach -t' >> ~/.bashrc" -echo "alias sysupdate='sudo nala update' >> ~/.bashrc" -echo "alias sysupgrade='sudo nala upgrade' >> ~/.bashrc" -echo "alias sysinstall='sudo nala install' >> ~/.bashrc" -echo "alias syshistory='nala history' >> ~/.bashrc" -echo "alias syslist='sudo apt list --upgradable' >> ~/.bashrc" - -#TLDR resources update +#TLDR Resources Update tldr --update +#Bash configuration +echo "# === Custom Alias List ===" >> ~/.bashrc +echo "alias ttn='tmux new -s'" >> ~/.bashrc +echo "alias tta='tmux attach -t'" >> ~/.bashrc +echo "alias sysupdate='sudo nala update'" >> ~/.bashrc +echo "alias sysupgrade='sudo nala upgrade'" >> ~/.bashrc +echo "alias sysinstall='sudo nala install'" >> ~/.bashrc +echo "alias syshistory='nala history'" >> ~/.bashrc +echo "alias syslist='sudo apt list --upgradable'" >> ~/.bashrc +echo "alias syshold='sudo apt hold'" >> ~/.bashrc +echo "alias sysrelease='sudo apt-mark unhold'" >> ~/.bashrc +echo "# === Custom Alias List ===" >> ~/.bashrc + +#Resetting Bash +source ~/.bashrc + #Print message echo "Process Complete!"