Change from pacaur to trizen

This commit is contained in:
Adam Goldsmith 2018-01-19 22:07:59 -05:00
parent 0530d4ee76
commit fab1a19fd6
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
# pacman
alias pi='pacaur'
alias pi='trizen'
alias pup='pi -Syu --noedit'
alias pr='pi -Rs'
alias prc='pr -c'
@ -7,10 +7,10 @@ alias pin='pi --noedit --noconfirm'
alias pis='pi -S'
alias pins='pin -S'
piro() { #remove orphans
if [[ ! -n $(pacaur -Qdt) ]]; then
if [[ ! -n $(pi -Qdt) ]]; then
echo "No orphans to remove."
else
pacaur -Rns $(pacman -Qdtq)
pi -Rns $(pacman -Qdtq)
fi
}