mirror of
https://github.com/arcan1s/dotfiles.git
synced 2025-04-24 07:57:18 +00:00
8 lines
241 B
Bash
8 lines
241 B
Bash
# pacman commands with repo variations
|
|
yaytest() {
|
|
/usr/bin/yay --config /etc/pactest.conf $* && echo "$*" | grep -q "S\|R\|U" && rehash
|
|
}
|
|
yayaur() {
|
|
/usr/bin/yay --config /etc/pacaur.conf $* && echo "$*" | grep -q "S\|R\|U" && rehash
|
|
}
|