blob: 6a2cc2a6405b708f0c1fc8d152931ee08045eb36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
#! /usr/bin/env sh
# https://github.com/Matoking/protontricks/issues/238
# https://github.com/cheat-engine/cheat-engine/issues/2789
#
# CC_Studio:
# Rotate -> 5 + 4
# Move -> 5 + 6
#
#EXE="Z:\mnt\hdd\Tools\cheat_engines\Cheat Engine 6.8.1\cheatengine-i386.exe"
#EXE="Z:\mnt\hdd\Tools\cheat_engines\Cheat Engine 7.5\Cheat Engine.exe"
#EXE="Z:\mnt\hdd\Tools\cheat_engines\CheatEngine752P.exe"
#EXE="regedit"
#EXE="Z:\mnt\hdd\Tools\mhw\CC_Studio/MHW CC Studio.exe"
#EXE="Z:\mnt\hdd\Tools\mhw\photo_mode\IGCSClient.exe"
#EXE="Z:\mnt\ssd\SteamLibrary\steamapps\common\Baldurs Gate 3\bin\bg3_dx11.exe"
#EXE="Z:\mnt\hdd\Tools\baldurs_gate3/modmanager/BG3ModManager.exe"
#EXE="Z:\home\andrew\dl\windowsdesktop-runtime-7.0.13-win-x64.exe"
#EXE="Z:\home\andrew\dl\ndp472-kb4054531-web.exe"
#EXE="Z:\mnt\hdd\Tools\elden_ring\injector\IGCSInjectorUI.exe"
#EXE="Z:\mnt\hdd\Tools\elden_ring\camera_tools\IGCSClient.exe"
#EXE="Z:\mnt\hdd\Tools\x360ce\x360ce.exe"
#EXE="Z:\mnt\hdd\Tools\fluffy_modmanager\Modmanager.exe"
EXE="Z:\mnt\hdd\Tools\cheat_engines\Cheat Engine 7.5.2\Cheat Engine.exe"
#EXE="Z:\mnt\hdd\Tools\cheat_engines\Cheat Engine 7.5.2\cheatengine-i386.exe"
#EXE="IGCSInjector.exe"
#EXE="Z:\mnt\hdd\Tools\inject.exe"
#ARG0="MonsterHunterWorld.exe"
#EXE="Z:\mnt\hdd\Tools\injector.exe"
#ARG0="-n"
#ARG1="eldenring.exe"
#ARG2="Z:\mnt\hdd\Tools\elden_ring\camera_tools\EldenRingCameraTools.dll"
#ARG1="TombRaider.exe"
#ARG2="TombRaiderCameraTools.dll"
#ARG1="MonsterHunterWorld"
#ARG2="Z:\mnt\hdd\Tools\reshade\ReShade64.dll"
#APP_ID=367500 # Dragon's Dogma
APP_ID=582010 # Monster Hunter World
#APP_ID=1086940
#APP_ID=3737539014
#APP_ID=1245620
#APP_ID=2054970
#APP_ID=203160 # Tomb Raider
#APP_ID=357190 # UMVC3
BUS_NAME=com.steampowered.App$APP_ID
#BUS_NAME=com.steampowered.App0
#export WINEARCH=win64
#export WINEARCH=win32
export WINE="$HOME/.local/share/Steam/steamapps/common/Proton - Experimental/files/bin/wine"
#export WINE="/mnt/ssd/SteamLibrary/steamapps/common/Proton 10.0/files/bin/wine"
export PROTON_NO_USERSETTINGS=1
#export WINEDLLOVERRIDES="*mscoree=n;*fusion=n"
#export WINEDEBUG=+tid,err+all,fixme-all,-loaddll
#STEAMAPPS=$HOME/.steam/steam/steamapps
#STEAMAPPS="/mnt/hdd/SteamLibrary/steamapps"
STEAMAPPS="/mnt/ssd/SteamLibrary/steamapps"
WINEPREFIX=$STEAMAPPS/compatdata/$APP_ID/pfx
export WINEPREFIX
#steam-run "$WINE" uninstaller
#steam-run "$WINE" winecfg -v win7
#steam-run "$WINE" "Z:\home\andrew\.cache\winetricks\dotnet452\NDP452-KB2901907-x86-x64-AllOS-ENU.exe"
#steam-run "$WINE" "Z:\home\andrew\.cache\winetricks\dotnet48\ndp48-x86-x64-allos-enu.exe"
#steam-run winetricks -q dotnet48
#steam-run "$WINE" control
#steam-run "$WINE" $EXE
#steam-run $HOME/.local/share/Steam/steamapps/common/SteamLinuxRuntime_sniper/pressure-vessel/bin/steam-runtime-launch-client --list
$HOME/.local/share/Steam/steamapps/common/SteamLinuxRuntime_soldier/pressure-vessel/bin/steam-runtime-launch-client \
--bus-name=$BUS_NAME -- \
env STEAM_COMPAT_MOUNTS=/mnt/hdd/SteamLibrary:/mnt/hdd/Tools WINEPREFIX=$WINEPREFIX \
"$WINE" "$EXE" $ARG0 $ARG1 $ARG2
|