|
#!/usr/bin/bash
|
|
export PROTON_LOG=1
|
|
export STEAMAPPS="$HOME/.local/share/Steam/steamapps"
|
|
export STEAM_COMPAT_DATA_PATH="$STEAMAPPS/compatdata/813780"
|
|
export STEAM_COMPAT_CLIENT_INSTALL_PATH="$HOME/.steam"
|
|
export WINEPREFIX="$STEAMAPPS/compatdata/813780/pfx"
|
|
# Adjust the path to the proton executable used by Age of Empires II
|
|
export PROTON_EXEC="/usr/share/steam/compatibilitytools.d/proton-ge-custom/proton"
|
|
# export WINEDEBUG=warn+all # This is for debug logs
|
|
# export OBS_VKCAPTURE=1 # Enable this for OBS Videogame capture
|
|
|
|
#install capture age (only needed once). Adjust the location to point to the installer you downloaded.
|
|
# "$PROTON_EXEC" run "Z:/$HOME/Downloads/CaptureAgeSetup.exe"
|
|
|
|
# run capture age
|
|
# Older version of CA:DE were installed in AppData/Local/Programs/CaptureAge . If it doesn't launch for you, check this path
|
|
"$PROTON_EXEC" run "C:/users/steamuser/AppData/Local/Programs/CADE/CaptureAge.exe"
|