From 118382bd0ab40318a628e677e52b92fca12630ff Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 12 Mar 2022 21:39:38 -0500 Subject: [PATCH] Game soundStrider added. --- linux-game-manager.sh | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 038fb40..e57f847 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -256,11 +256,13 @@ exec &> >(/usr/bin/tee -a "${cache}/linux-game-manager.log") # Use menu friendly names. gameList=( "Fantasy Story II" + "soundStrider" ) # Check for required packages requiredPackages=( "curl" + "dialog" "unzip" "wget" ) @@ -307,12 +309,16 @@ mkdir -p "${installPath}" case "${game}" in "Fantasy Story II") get_installer "FS2_2.6_Linux.zip" "https://drive.google.com/file/d/187OaD1HhPoty85yJafZyvfqD5_G3P04c/view?usp=sharing" - pushd "${installPath}" - unzip "${cache}/FS2_2.6_Linux.zip" - popd + unzip -d "${installPath}" "${cache}/FS2_2.6_Linux.zip" chmod +x "${installPath}/FS2_2.6_Linux/FS2.x86_64" add_launcher "${installPath}/FS2_2.6_Linux/FS2.x86_64" "-ESpeakApplication=espeak-ng" ;; + "soundStrider") + get_installer "soundStrider-linux-x64.zip" "https://shiftbacktick.itch.io/soundstrider" + mkdir -p "${installPath}/soundStrider" + unzip -d "${installPath}/soundStrider" "${cache}/soundStrider-linux-x64.zip" + add_launcher "${installPath}/soundStrider/soundStrider" + ;; "Donate") open_url "https://ko-fi.com/stormux" ;;