summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2024-10-18 15:41:40 -0400
committerFreya Murphy <freya@freyacat.org>2024-10-18 15:41:40 -0400
commit25166edb13b6ea4d2f46176e3852b8f932a13013 (patch)
tree39e948fa2fd0e2c75676f18d92204de4e8209cb5
parentLEGO Island (diff)
downloadwinescripts-25166edb13b6ea4d2f46176e3852b8f932a13013.tar.gz
winescripts-25166edb13b6ea4d2f46176e3852b8f932a13013.tar.bz2
winescripts-25166edb13b6ea4d2f46176e3852b8f932a13013.zip
minesweeperHEADmain
-rwxr-xr-xLamento/env5
-rwxr-xr-xLamento/run2
-rw-r--r--Minesweeper/.gitignore1
-rw-r--r--Minesweeper/bin/WINMINE.CHMbin0 -> 15071 bytes
-rw-r--r--Minesweeper/bin/WINMINE.EXEbin0 -> 119808 bytes
-rw-r--r--Minesweeper/bin/WINMINE.HLPbin0 -> 11476 bytes
-rwxr-xr-xMinesweeper/env10
-rwxr-xr-xMinesweeper/run6
8 files changed, 23 insertions, 1 deletions
diff --git a/Lamento/env b/Lamento/env
index c7f18da..d22c29f 100755
--- a/Lamento/env
+++ b/Lamento/env
@@ -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
diff --git a/Lamento/run b/Lamento/run
index e3c0d9a..a661937 100755
--- a/Lamento/run
+++ b/Lamento/run
@@ -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'
diff --git a/Minesweeper/.gitignore b/Minesweeper/.gitignore
new file mode 100644
index 0000000..c618693
--- /dev/null
+++ b/Minesweeper/.gitignore
@@ -0,0 +1 @@
+wine
diff --git a/Minesweeper/bin/WINMINE.CHM b/Minesweeper/bin/WINMINE.CHM
new file mode 100644
index 0000000..e63402c
--- /dev/null
+++ b/Minesweeper/bin/WINMINE.CHM
Binary files differ
diff --git a/Minesweeper/bin/WINMINE.EXE b/Minesweeper/bin/WINMINE.EXE
new file mode 100644
index 0000000..450958e
--- /dev/null
+++ b/Minesweeper/bin/WINMINE.EXE
Binary files differ
diff --git a/Minesweeper/bin/WINMINE.HLP b/Minesweeper/bin/WINMINE.HLP
new file mode 100644
index 0000000..e820bc6
--- /dev/null
+++ b/Minesweeper/bin/WINMINE.HLP
Binary files differ
diff --git a/Minesweeper/env b/Minesweeper/env
new file mode 100755
index 0000000..2bf7fa0
--- /dev/null
+++ b/Minesweeper/env
@@ -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
diff --git a/Minesweeper/run b/Minesweeper/run
new file mode 100755
index 0000000..4638ece
--- /dev/null
+++ b/Minesweeper/run
@@ -0,0 +1,6 @@
+#!/bin/sh
+
+source ./env
+
+cd bin && "$GAMESCOPE" -W 800 -H 600 -- \
+ wine 'WINMINE.EXE'