--BASH-- alias u='sudo yay -Syu' # Arch Yay package manager update alias c='clear' # clear shortcut alias h='clear && cd ~ && ls -l --color=auto' # Clears screen, goes to ~, and gives a colorful "ls -l" alias ports='netstat -tulanp' # Shows network ports being used on the system alias status='systemctl status' # Systemd service status shortcut alias restart='sudo systemctl restart' # Systemd service restart shortcut alias start='sudo systemctl start' # Systemd service start shortcut alias stop='sudo systemctl stop' # Systemd service stop shortcut alias lsblk='lsblk -e 7' # lsblk excluding Snap volumes