diff --git a/home/stormux/.xinitrc b/home/stormux/.xinitrc index b7a4fbd..07cc423 100755 --- a/home/stormux/.xinitrc +++ b/home/stormux/.xinitrc @@ -377,22 +377,14 @@ case "$GAME" in "Wicked Quest") run_native "wicked-quest" "wicked_quest.py" ;; - "Kitchen's Sink") + "Kitchensinc") pushd "/home/stormux/.wine32/drive_c/Program Files/Kitchen's Sink" - if [[ "$(uname -m)" != "x86_64" ]]; then - WINEPREFIX=/home/stormux/.wine32 FEXBash -c "/home/stormux/.local/wine32/bin/wine gamemenu.exe" - else - WINEPREFIX=/home/stormux/.wine32 /home/stormux/.local/wine32/bin/wine gamemenu.exe - fi + WINEPREFIX=/home/stormux/.wine32 /home/stormux/.local/wine32/bin/wine gamemenu.exe popd ;; "Swamp") pushd "/home/stormux/.wine32/drive_c/Program Files/swamp" - if [[ "$(uname -m)" != "x86_64" ]]; then - WINEPREFIX=/home/stormux/.wine32 FEXBash -c "/home/stormux/.local/wine32/bin/wine Swamp.exe" - else - WINEPREFIX=/home/stormux/.wine32 /home/stormux/.local/wine32/bin/wine Swamp.exe - fi + WINEPREFIX=/home/stormux/.wine32 /home/stormux/.local/wine32/bin/wine Swamp.exe popd ;; "Zombowl") diff --git a/usr/local/bin/game_launcher.py b/usr/local/bin/game_launcher.py index a86c424..be52e72 100755 --- a/usr/local/bin/game_launcher.py +++ b/usr/local/bin/game_launcher.py @@ -970,6 +970,11 @@ if __name__ == "__main__": menu.add_item("Arcade", "Haunted House", "GAME='Haunted House' startx") menu.add_item("Arcade", "Haunted Party", "GAME='Haunted Party' startx") menu.add_item("Arcade", "kaskade", "GAME=Kaskade startx") + + # Add Kitchen's Sink only on x86_64 (alphabetically positioned) + if platform.machine() == "x86_64": + menu.add_item("Arcade", "Kitchensinc", "GAME=Kitchensinc startx") + menu.add_item("Arcade", "Oh Shitt", "GAME='Oh Shit' startx") menu.add_item("Arcade", "Q9 Action Game", "GAME='Q9 Action Game' startx") menu.add_item("Arcade", "River Raiders", "GAME='River Raiders' startx") @@ -982,17 +987,16 @@ if __name__ == "__main__": menu.add_item("Arcade", "Sketchbook (Your World)", "GAME='Sketchbook (Your World)' startx") menu.add_item("Arcade", "Super Egg Hunt", "GAME='Super Egg Hunt' startx") menu.add_item("Arcade", "Super Liam", "GAME='Super Liam' startx") + + # Add Swamp only on x86_64 (alphabetically positioned) + 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 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") menu.add_item("Arcade", "Wicked Quest", "GAME='Wicked Quest' startx") menu.add_item("Arcade", "Zombowl", "GAME='Zombowl' startx") - - # Add Kitchen's Sink and Swamp only on x86_64 - if platform.machine() == "x86_64": - menu.add_item("Arcade", "Kitchen's Sink", "GAME=\"Kitchen's Sink\" startx") - menu.add_item("Arcade", "Swamp", "GAME='Swamp' startx") # Add board and card games section menu.add_section("Board and Card Games")