A tiny bit of menu reorganization. I jinxed myself by saying it was the final commit before release lol.

This commit is contained in:
Storm Dragon
2025-08-28 17:52:10 -04:00
parent e671e832e3
commit b4cedd2b6f
2 changed files with 12 additions and 16 deletions

View File

@@ -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")

View File

@@ -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")