Organize files into categories. Likely still a bit of cleanup left to do.

This commit is contained in:
Storm Dragon
2026-04-21 12:50:36 -04:00
parent c92d35a023
commit b83b995cf0
326 changed files with 7 additions and 123 deletions
@@ -0,0 +1,12 @@
architecture="$(uname -m)"
if [[ "${architecture}" == "aarch64" ]]; then
pkgname="Zombowl-Linux-aarch64.zip"
elif [[ "${architecture}" == "x86_64" ]]; then
pkgname="Zombowl-Linux-X86_64.zip"
else
ui_msgbox "Game Installer" "Game Installer" "Architecture ${architecture} is not supported."
exit 1
fi
get_installer "${pkgname}" "https://stormdragon2976.itch.io/zombowl"
mkdir -p "${installPath}/"
unzip -d "${installPath}/" "${cache}/${pkgname}"