From de189828af32c5337d2b39859ca798eef37f9694 Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 5 Oct 2024 20:15:18 -0400 Subject: [PATCH] Added game Zombowl. --- linux-game-manager.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 0d3ce55..99b623c 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -549,6 +549,7 @@ gameList=( "Upheaval Commandline" "Upheaval Gui" "Wurmus" + "Zombowl" ) # Check for required packages @@ -940,6 +941,21 @@ case "${game}" in unzip -d "${installPath}/Wurmus" "${cache}/Wurmus-linux-x64.zip" add_launcher "${installPath}/Wurmus/Wurmus" ;; + "Zombowl") + architecture="$(uname -m)" + if [[ "${architecture}" == "aarch64" ]]; then + pkgname="Zombowl-Linux-aarch64.zip" + elif [[ "${architecture}" == "x86_64" ]]; then + pkgname="Zombowl-Linux-X86_64.zip" + else + echo "Architecture ${architecture} is not supported." + exit 1 + fi + get_installer "${pkgname}" "https://stormdragon2976.itch.io/zombowl" + mkdir -p "${installPath}/" + unzip -d "${installPath}/" "${cache}/${pkgname}" + add_launcher "${installPath}/${pkgname%.*}/Zombowl" + ;; "Donate") open_url "https://ko-fi.com/stormux" ;;