Alias pacman to "yay"

This commit is contained in:
Sage Vaillancourt 2023-12-17 17:31:46 -05:00
parent 74a178045e
commit b8078a176e
1 changed files with 4 additions and 0 deletions

View File

@ -1,5 +1,9 @@
#!/bin/bash
if command -v yay; then
alias pacman="yay"
fi
function ishelp {
[[ "$1" == "help" ]] || [[ "$1" == "-h" ]] || [[ "$1" == "--help" ]]
}