From 2c8d56ac9cae637e95afb98d294e6c98373bd948 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Wed, 28 Aug 2024 20:40:52 -0500 Subject: [PATCH] Update 2-gaming-setup.sh fixes for pacman --- src/commands/system-setup/2-gaming-setup.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/commands/system-setup/2-gaming-setup.sh b/src/commands/system-setup/2-gaming-setup.sh index 55044516..b0d11261 100755 --- a/src/commands/system-setup/2-gaming-setup.sh +++ b/src/commands/system-setup/2-gaming-setup.sh @@ -91,15 +91,15 @@ install_additional_dependencies() { ;; *pacman) echo "Installing Steam for Arch Linux..." - sudo pacman -S steam + sudo pacman -S --needed --noconfirm steam echo "Steam installation complete." echo "Installing Lutris for Arch Linux..." - sudo pacman -S --noconfirm lutris + sudo pacman -S --needed --noconfirm lutris echo "Lutris installation complete." echo "Installing GOverlay for Arch Linux..." - sudo pacman -S --noconfirm goverlay + sudo pacman -S --needed --noconfirm goverlay echo "GOverlay installation complete." ;; *)