mirror of
https://github.com/arcan1s/dotfiles.git
synced 2025-12-16 20:23:44 +00:00
8 lines
247 B
Bash
8 lines
247 B
Bash
# pacman commands with repo variations
|
|
aurtest() {
|
|
/usr/bin/aurman --config /etc/pactest.conf $* && echo "$*" | grep -q "S\|R\|U" && rehash
|
|
}
|
|
auraur() {
|
|
/usr/bin/aurman --config /etc/pacaur.conf $* && echo "$*" | grep -q "S\|R\|U" && rehash
|
|
}
|