diff --git a/home/stormux/.xinitrc b/home/stormux/.xinitrc index 7e56d1d..00a52de 100755 --- a/home/stormux/.xinitrc +++ b/home/stormux/.xinitrc @@ -229,6 +229,11 @@ case "$GAME" in "Golf") run_wine "golf" "golf.exe" ;; + "Horseshoes") + pushd /home/stormux/.local/games/horseshoes + ./horseshoes + popd + ;; "Haunted House") pushd /home/stormux/.local/games/haunted-house ./runner haunted-house diff --git a/home/stormux/Documents/change_log.md b/home/stormux/Documents/change_log.md index 44147e6..c65e5a2 100644 --- a/home/stormux/Documents/change_log.md +++ b/home/stormux/Documents/change_log.md @@ -5,6 +5,7 @@ Dates are given for the image. All items listed are available for the listed ima ## August 1, 2025 +- Game Horseshoes added - Install to disk option added for x86_64. (Careful, all data on the target disk will be permanently destroyed) - Migrate from iso format to universally bootable image. - Stormux aarch64 repository updated. diff --git a/usr/local/bin/game_launcher.py b/usr/local/bin/game_launcher.py index 47f8bdd..b4eb624 100755 --- a/usr/local/bin/game_launcher.py +++ b/usr/local/bin/game_launcher.py @@ -859,6 +859,7 @@ if __name__ == "__main__": # Add sports section menu.add_section("Sports") menu.add_item("Sports", "Golf", "GAME=Golf startx") + menu.add_item("Sports", "Horseshoes", "GAME=Horseshoes startx") menu.add_item("Sports", "Pong", "GAME=Pong startx") # Add strategy section