From ad0e7e3d7e680839cdcec120a7082c5812d58a3b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Sat, 21 Dec 2024 21:02:54 -0500 Subject: [PATCH] Audio Quake Installer file created. --- .install/Audio Quake.sh | 3 +++ linux-game-manager.sh | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) create mode 100644 .install/Audio Quake.sh diff --git a/.install/Audio Quake.sh b/.install/Audio Quake.sh new file mode 100644 index 0000000..25fd16d --- /dev/null +++ b/.install/Audio Quake.sh @@ -0,0 +1,3 @@ +check_architecture x86_64 +download "https://michaels.world/aq-linux.zip" +unzip -d "${installPath}/AudioQuake" "${cache}/aq-linux.zip" diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 88ee559..135391c 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -515,8 +515,8 @@ game_launcher() { ) # Rebuild menuList from sorted entries menuList=() - for entry in "${sortedList[@]}"; do - menuList+=("${entry#*|}" "${entry%|*}") + for i in "${sortedList[@]}"; do + menuList+=("${i#*|}" "${i%|*}") done # Create the menu of all games selectedGame="$(dialog --backtitle "Linux Game Launcher" \