- Added support for Manjaro Gnome and KDE for xkeysnail

This commit is contained in:
Ben Reaves
2020-05-02 19:42:34 -05:00
parent af9036ec24
commit ae36d7f955
3 changed files with 18 additions and 5 deletions

View File

@@ -9,7 +9,7 @@ elif pkgmgr="$( which dnf )" 2> /dev/null; then
$pkgmgr check-update; $pkgmgr install -y "$1"
elif pkgmgr="$( which pacman )" 2> /dev/null; then
echo "Arch-based"
$pkgmgr -Syy; yes | pkgmr -S "$1"
$pkgmgr -Syy;yes | $pkgmgr -S "$1"
else
echo "Package manager not found, please install $1" >&2
exit 1