Slow Damage
This commit is contained in:
parent
48b1404c33
commit
674e64de27
5 changed files with 25 additions and 0 deletions
2
Slow Damage/.gitignore
vendored
Normal file
2
Slow Damage/.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
||||||
|
bin
|
||||||
|
wine
|
3
Slow Damage/README.md
Normal file
3
Slow Damage/README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
#### Slow Damage
|
||||||
|
|
||||||
|
Extract Slow Damages game files into the `bin` directory. Then run `setup`.
|
8
Slow Damage/env
Executable file
8
Slow Damage/env
Executable file
|
@ -0,0 +1,8 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
wineserver -k
|
||||||
|
export STEAM_TEMP_DIR="$(pwd)/wine"
|
||||||
|
mkdir -p "$STEAM_TEMP_DIR"
|
||||||
|
export STEAM_COMPAT_DATA_PATH="$STEAM_TEMP_DIR"
|
||||||
|
export STEAM_COMPAT_CLIENT_INSTALL_PATH="$STEAM_TEMP_DIR"
|
||||||
|
export PROTON="$HOME/.local/share/Steam/steamapps/common/Proton - Experimental/proton"
|
7
Slow Damage/run
Executable file
7
Slow Damage/run
Executable file
|
@ -0,0 +1,7 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
source ./env
|
||||||
|
|
||||||
|
cd 'wine/pfx/drive_c/Program Files (x86)/Slow Damage' && \
|
||||||
|
"$PROTON" run 'slow_damage_en.exe'
|
||||||
|
|
5
Slow Damage/setup
Executable file
5
Slow Damage/setup
Executable file
|
@ -0,0 +1,5 @@
|
||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
source ./env
|
||||||
|
|
||||||
|
"$PROTON" run ./bin/setup.exe
|
Loading…
Reference in a new issue