From d5b860737f130759a8a70dedc441caa48e5ca850 Mon Sep 17 00:00:00 2001 From: Mikaela Suomalainen Date: Mon, 26 Nov 2018 14:43:14 +0200 Subject: [PATCH] rc: s/pacaur/yay/g Pacaur has been deprecated and I hope that yay which was suggested to me at IRC does the same thing considering their README says: > Yay is based on the design of yaourt, apacman and pacaur. --- rc/bashrc | 6 +++--- rc/zshrc | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/rc/bashrc b/rc/bashrc index e6627ee1..af41c4f3 100644 --- a/rc/bashrc +++ b/rc/bashrc @@ -574,9 +574,9 @@ alias connman-wlans='grep -E "Name|Passphrase" /var/lib/connman/wifi*/settings - # Meant for SSL certificates (IRC)) alias lowernocolon="tr -d ':' | tr 'A-Z' 'a-z'" -# As pacman and pacaur share the same flags -if hash pacaur 2>/dev/null; then - alias pacman="LANG=en pacaur --needed" +# As pacman and yay share the same flags +if hash yay 2>/dev/null; then + alias pacman="LANG=en yay --needed" else # I don't want to reinstall exact same versions that I have alias pacman="LANG=en pacman --needed" diff --git a/rc/zshrc b/rc/zshrc index fb306726..dbba6cca 100644 --- a/rc/zshrc +++ b/rc/zshrc @@ -572,9 +572,9 @@ alias connman-wlans='grep -E "Name|Passphrase" /var/lib/connman/wifi*/settings - # Meant for SSL certificates (IRC)) alias lowernocolon="tr -d ':' | tr 'A-Z' 'a-z'" -# As pacman and pacaur share the same flags -if hash pacaur 2>/dev/null; then - alias pacman="LANG=en pacaur --needed" +# As pacman and yay share the same flags +if hash yay 2>/dev/null; then + alias pacman="LANG=en yay --needed" else # I don't want to reinstall exact same versions that I have alias pacman="LANG=en pacman --needed"