From ff59b6e4606b5c39ccc1a4b914a98d46a994825f Mon Sep 17 00:00:00 2001 From: Michael Taboada Date: Tue, 9 Aug 2022 16:27:15 -0700 Subject: [PATCH] Add game Cacophony --- linux-game-manager.sh | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index eb6b317..e4adbac 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -283,6 +283,7 @@ game_launcher() { done # Web based games and donation menuList+=("Aliens" "Aliens") + menuList+=("Cacophony" "Cacophony") menuList+=("Battle Weary" "Battle Weary") menuList+=("QuentinC Play Room" "QuentinC Play Room") menuList+=("Trigaea" "Trigaea") @@ -304,6 +305,9 @@ game_launcher() { "Battle Weary") open_url "https://lonespelunker.itch.io/battle-weary" ;; + "Cacophony") + open_url "https://tianmaru.itch.io/cacophony" + ;; "QuentinC Play Room") open_url "https://qcsalon.net/" ;; @@ -357,6 +361,7 @@ gameList=( "Auroboros" "Battle Weary" "Bladius" + "Cacophony" "Chimera" "Echo Command" "E.X.O." @@ -430,7 +435,7 @@ done installPath="${HOME}/.local/games" mkdir -p "${installPath}" case "${game}" in - "Aliens"|"Battle Weary"|"QuentinC Play Room"|"Trigaea") + "Aliens"|"Battle Weary"|"Cacophony"|"QuentinC Play Room"|"Trigaea") dialog --backtitle "Linux Game manager" \ --infobox "${game} is a web based game and does not need to be installed." -1 -1 ;;