From 0a9d76b3429716c0e95c374803ab16b64beb2f3b Mon Sep 17 00:00:00 2001 From: gunther6000 Date: Sat, 17 Aug 2024 14:04:19 -0400 Subject: [PATCH 1/3] Adding Steam And Lutris And Goverlay Install For Archlinux --- src/commands/system-setup/2-gaming-setup.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/commands/system-setup/2-gaming-setup.sh b/src/commands/system-setup/2-gaming-setup.sh index 631a6ad3..e64f3ba6 100755 --- a/src/commands/system-setup/2-gaming-setup.sh +++ b/src/commands/system-setup/2-gaming-setup.sh @@ -90,7 +90,17 @@ install_additional_dependencies() { ;; *pacman) + echo "Installing Steam for Arch Linux..." + sudo pacman -S --noconfirm steam + echo "Steam installation complete." + echo "Installing Lutris for Arch Linux..." + sudo pacman -S --noconfirm lutris + echo "Lutris installation complete." + + echo "Installing GOverlay for Arch Linux..." + sudo pacman -S --noconfirm goverlay + echo "GOverlay installation complete." ;; *) From 0d5b2cea26124508eb1b17c6da0a6fcc1d0b33c5 Mon Sep 17 00:00:00 2001 From: Nightmare1984 Date: Mon, 19 Aug 2024 06:35:49 -0400 Subject: [PATCH 2/3] Just Fixing Steam Install So That You Can pick version --- src/commands/system-setup/2-gaming-setup.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/system-setup/2-gaming-setup.sh b/src/commands/system-setup/2-gaming-setup.sh index e64f3ba6..55044516 100755 --- a/src/commands/system-setup/2-gaming-setup.sh +++ b/src/commands/system-setup/2-gaming-setup.sh @@ -91,7 +91,7 @@ install_additional_dependencies() { ;; *pacman) echo "Installing Steam for Arch Linux..." - sudo pacman -S --noconfirm steam + sudo pacman -S steam echo "Steam installation complete." echo "Installing Lutris for Arch Linux..." From 2c8d56ac9cae637e95afb98d294e6c98373bd948 Mon Sep 17 00:00:00 2001 From: Chris Titus Date: Wed, 28 Aug 2024 20:40:52 -0500 Subject: [PATCH 3/3] 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." ;; *)