Audio Quake Installer file created.

This commit is contained in:
Storm Dragon 2024-12-21 21:02:54 -05:00
parent d29523316d
commit ad0e7e3d7e
2 changed files with 5 additions and 2 deletions

3
.install/Audio Quake.sh Normal file
View File

@ -0,0 +1,3 @@
check_architecture x86_64
download "https://michaels.world/aq-linux.zip"
unzip -d "${installPath}/AudioQuake" "${cache}/aq-linux.zip"

View File

@ -515,8 +515,8 @@ game_launcher() {
) )
# Rebuild menuList from sorted entries # Rebuild menuList from sorted entries
menuList=() menuList=()
for entry in "${sortedList[@]}"; do for i in "${sortedList[@]}"; do
menuList+=("${entry#*|}" "${entry%|*}") menuList+=("${i#*|}" "${i%|*}")
done done
# Create the menu of all games # Create the menu of all games
selectedGame="$(dialog --backtitle "Linux Game Launcher" \ selectedGame="$(dialog --backtitle "Linux Game Launcher" \