mirror of
https://github.com/arcan1s/dotfiles.git
synced 2025-04-24 07:57:18 +00:00
8 lines
191 B
Bash
8 lines
191 B
Bash
# redefine pacman and aurman
|
|
pacman() {
|
|
/usr/bin/sudo /usr/bin/pacman $* && echo "$*" | grep -q "S\|R\|U" && rehash
|
|
}
|
|
yay() {
|
|
/usr/bin/yay $* && echo "$*" | grep -q "S\|R\|U" && rehash
|
|
}
|