Lamento
This commit is contained in:
parent
f9c6368f29
commit
842b292a98
5 changed files with 30 additions and 0 deletions
2
Lamento/.gitignore
vendored
Normal file
2
Lamento/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
wine
|
||||
data
|
3
Lamento/README.md
Normal file
3
Lamento/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
#### Lamento
|
||||
|
||||
Extract Lamentos game files into the `data` directory. Then run `setup`.
|
8
Lamento/env
Executable file
8
Lamento/env
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
wineserver -k
|
||||
export LANG=ja_JP.UTF-8
|
||||
export LC_ALL=ja_JP.UTF-8
|
||||
export WINEPREFIX="$(pwd)/wine"
|
||||
export WINEARCH=win32
|
||||
export WINEESYNC=1
|
9
Lamento/run
Executable file
9
Lamento/run
Executable file
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
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 -- \
|
||||
wine 'Lamento -BEYOND THE VOID-.exe'
|
8
Lamento/setup
Executable file
8
Lamento/setup
Executable file
|
@ -0,0 +1,8 @@
|
|||
#!/bin/sh
|
||||
|
||||
source ./env
|
||||
winetricks vcrun2010
|
||||
winetricks quartz
|
||||
winetricks ffdshow
|
||||
cp ../dxvk/x32/*.dll "$WINEPREFIX/drive_c/windows/system32"
|
||||
|
Loading…
Reference in a new issue