minesweeper
This commit is contained in:
parent
5831a45bdd
commit
25166edb13
8 changed files with 23 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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
1
Minesweeper/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
wine
|
BIN
Minesweeper/bin/WINMINE.CHM
Normal file
BIN
Minesweeper/bin/WINMINE.CHM
Normal file
Binary file not shown.
BIN
Minesweeper/bin/WINMINE.EXE
Normal file
BIN
Minesweeper/bin/WINMINE.EXE
Normal file
Binary file not shown.
BIN
Minesweeper/bin/WINMINE.HLP
Normal file
BIN
Minesweeper/bin/WINMINE.HLP
Normal file
Binary file not shown.
10
Minesweeper/env
Executable file
10
Minesweeper/env
Executable 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
6
Minesweeper/run
Executable file
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
source ./env
|
||||
|
||||
cd bin && "$GAMESCOPE" -W 800 -H 600 -- \
|
||||
wine 'WINMINE.EXE'
|
Loading…
Reference in a new issue