Compare commits

...

2 Commits

Author SHA1 Message Date
JEEVITHA KANNAN K S
de38c62b43
Merge ff44b7095f into 79eb752552 2024-10-21 16:14:15 +00:00
JEEVITHA KANNAN K S
ff44b7095f
Update gaming-setup.sh 2024-10-21 21:44:12 +05:30

View File

@ -25,12 +25,15 @@ installDepend() {
$AUR_HELPER -S --needed --noconfirm $DEPENDENCIES $DISTRO_DEPS $AUR_HELPER -S --needed --noconfirm $DEPENDENCIES $DISTRO_DEPS
;; ;;
apt-get|nala) apt-get|nala)
DISTRO_DEPS="software-properties-common libasound2 libsdl2-2.0-0 wine64 wine32" DISTRO_DEPS="libasound2 libsdl2-2.0-0 wine64 wine32"
"$ESCALATION_TOOL" dpkg --add-architecture i386 "$ESCALATION_TOOL" dpkg --add-architecture i386
if [ "$DTYPE" != "pop" ]; then if [ "$DTYPE" != "pop" ]; then
"$ESCALATION_TOOL" "$PACKAGER" install -y software-properties-common
"$ESCALATION_TOOL" apt-add-repository contrib -y "$ESCALATION_TOOL" apt-add-repository contrib -y
fi fi
"$ESCALATION_TOOL" "$PACKAGER" update "$ESCALATION_TOOL" "$PACKAGER" update
"$ESCALATION_TOOL" "$PACKAGER" install -y $DEPENDENCIES $DISTRO_DEPS "$ESCALATION_TOOL" "$PACKAGER" install -y $DEPENDENCIES $DISTRO_DEPS
;; ;;