From 34000858de61b1c249e0fedd06c74f8f447ec44c Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Tue, 6 Dec 2022 02:31:28 -0500 Subject: [PATCH] Added game "Slay the Text". --- linux-game-manager.sh | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/linux-game-manager.sh b/linux-game-manager.sh index 09e01ea..dd8da8a 100755 --- a/linux-game-manager.sh +++ b/linux-game-manager.sh @@ -331,6 +331,10 @@ game_launcher() { *doom*) exec ${game} ;; + *"main.py") + pushd "${game%/*}" + python3 ${game} + ;; *) pushd "${game%/*}" exec ${game} @@ -379,6 +383,7 @@ gameList=( "QuentinC Play Room" "Periphery Synthetic EP" "S.E.A." + "Slay the Text" "SoundRTS" "soundStrider" "StickMUD" @@ -586,6 +591,11 @@ case "${game}" in unzip -d "${installPath}/S.E.A." "${cache}/SEA-linux-x64.zip" add_launcher "${installPath}/S.E.A./SEA" ;; + "Slay the Text") + git -C "${installPath}/" clone https://github.com/Difio3333/slaythetext.git | \ + dialog --progressbox "Installing \"${game}\", please wait..." -1 -1 + add_launcher "${installPath}/slaythetext/main.py" + ;; "SoundRTS") mkdir -p "${installPath}" git -C "${installPath}" clone "https://github.com/soundmud/soundrts.git"