minesweeper

This commit is contained in:
Murphy 2024-10-18 15:41:40 -04:00
parent 5831a45bdd
commit 25166edb13
Signed by: freya
GPG key ID: 744AB800E383AE52
8 changed files with 23 additions and 1 deletions

View file

@ -6,3 +6,8 @@ export LC_ALL=ja_JP.UTF-8
export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win32
export WINEESYNC=1
export GAMESCOPE=gamescope
if command -v "gamescope-legacy"; then
export GAMESCOPE="gamescope-legacy"
fi

View file

@ -5,5 +5,5 @@ source ./env
#Xwayland :1 -fullscreen -geometry 800x600 &
#cd data && DISPLAY=:1 wine 'Lamento -BEYOND THE VOID-.exe'
cd data && gamescope-legacy -W 800 -H 600 -- \
cd data && "$GAMESCOPE" -W 800 -H 600 -- \
wine 'Lamento -BEYOND THE VOID-.exe'

1
Minesweeper/.gitignore vendored Normal file
View file

@ -0,0 +1 @@
wine

BIN
Minesweeper/bin/WINMINE.CHM Normal file

Binary file not shown.

BIN
Minesweeper/bin/WINMINE.EXE Normal file

Binary file not shown.

BIN
Minesweeper/bin/WINMINE.HLP Normal file

Binary file not shown.

10
Minesweeper/env Executable file
View file

@ -0,0 +1,10 @@
#!/bin/sh
export WINEPREFIX="$(pwd)/wine"
export WINEARCH=win64
export WINEESYNC=1
export GAMESCOPE=gamescope
if command -v "gamescope-legacy"; then
export GAMESCOPE="gamescope-legacy"
fi

6
Minesweeper/run Executable file
View file

@ -0,0 +1,6 @@
#!/bin/sh
source ./env
cd bin && "$GAMESCOPE" -W 800 -H 600 -- \
wine 'WINMINE.EXE'