Skip to content

Commit

Permalink
added 'zypper' variant in install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Tikaiz1 authored and Smoren committed Nov 1, 2024
1 parent 04ec14c commit 9bf941e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ elif
echo "Using eopkg to install dependencies..."
sudo eopkg up
sudo eopkg it alsa-tools alsa-utils -y
elif
command -v zypper &>/dev/null; then
echo "Using zypper to install dependencies..."
sudo zypper install -y alsa-tools alsa-utils hda-verb
elif
command -v dnf &>/dev/null; then
echo "Using dnf to install dependencies..."
sudo dnf install -y alsa-tools alsa-utils
else
echo "Neither apt, pacman, eopkg, nor dnf found. Cannot install dependencies."
exit 1
echo "Neither apt, pacman, eopkg, zypper, nor dnf found. Cannot install dependencies."
fi

echo "Copying files..."
Expand Down

0 comments on commit 9bf941e

Please sign in to comment.