diff --git a/home/stormux/.xinitrc b/home/stormux/.xinitrc index a36ea49..ae15852 100755 --- a/home/stormux/.xinitrc +++ b/home/stormux/.xinitrc @@ -384,7 +384,7 @@ case "$GAME" in run_wine "super egg hunt" "superegghunt.exe" ;; "Super Liam") - run_wine "Super Liam" "sl.exe" + fex_load "Super Liam" "SuperLiam" ;; "The Blind Swordsman") if [[ "$(uname -m)" != "x86_64" ]]; then @@ -393,11 +393,14 @@ case "$GAME" in wine ~/.local/games/TheBlindSwordsman.exe fi ;; + "The Great Toy Robbery") + fex_load "The Great Toy Robbery" "tgtr" + ;; "The Tornado Chicken") fex_load "The Tornado Chicken" "Ttc" ;; "Top Speed 3") - run_wine "Top Speed 3" "TopSpeed.exe" + fex_load "Top Speed 3" "TopSpeed" ;; "Toy Mania") if [[ -e ~/Downloads/ToyMania_windows_portable_password_is_GrateCollector.7z ]]; then diff --git a/usr/local/bin/game_launcher.py b/usr/local/bin/game_launcher.py index 79cf08d..f2e8171 100755 --- a/usr/local/bin/game_launcher.py +++ b/usr/local/bin/game_launcher.py @@ -1047,6 +1047,7 @@ if __name__ == "__main__": if platform.machine() == "x86_64": menu.add_item("Arcade", "Swamp", "GAME='Swamp' startx") menu.add_item("Arcade", "The Blind Swordsman", "GAME='The Blind Swordsman' startx") + menu.add_item("Arcade", "The Great Toy Robbery", "GAME='The Great Toy Robbery' startx") menu.add_item("Arcade", "The Tornado Chicken", "GAME='The Tornado Chicken' startx") menu.add_item("Arcade", "Toy Mania", "GAME='Toy Mania' startx") menu.add_item("Arcade", "Villains From Beyond", "GAME='Villains From Beyond' startx")