Created
May 14, 2024 20:09
-
-
Save alsgu3rra/70c5c79bcc40719712b2f4ea33679560 to your computer and use it in GitHub Desktop.
Aliases
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Systemd | |
alias start='sudo systemctl start' | |
alias stop='sudo systemctl stop' | |
alias disable='sudo systemctl disable' | |
alias enable='sudo systemctl enable' | |
# Pacman | |
alias install='sudo pacman -S --noconfirm' | |
alias uninstall='sudo pacman -R --noconfirm' | |
alias update='sudo pacman -Syy --color auto' | |
alias upgrade='sudo pacman -Syyuu --noconfirm --color auto' | |
alias search='sudo pacman -Ss --color auto' | |
# Font | |
alias font-reload='sudo fc-cache -fv' | |
# Free | |
alias free='free -mt' | |
alias ram='free -h' | |
# Continue Download | |
alias wget='wget -c' | |
# Pacman Unlock | |
alias unlock='sudo rm /var/lib/pacman/db.lck' | |
alias rmpacmanlock='sudo rm /var/lib/pacman/db.lck' | |
# List | |
alias ls='ls --color=auto' | |
alias la='ls -a' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment