shadow

joined 2 years ago
[โ€“] shadow@lemmy.dbzer0.com 25 points 6 days ago (1 children)

Use a simple script to run the installers in the same container as the base game:

#!/bin/bash

export STEAM_COMPAT_CLIENT_INSTALL_PATH="$HOME/.local/share/Steam"
export STEAM_COMPAT_DATA_PATH="/$HOME/.local/share/Steam/steamapps/compatdata/*prefix number*/"

"$HOME/.local/share/Steam/steamapps/common/Proton 10.0/proton" run "$HOME/Downloads/StellarisExp1.exe"

Just change the relevant parts to run the other installers, e.g. the installer name and location and the prefix number to match what Steam has generated

[โ€“] shadow@lemmy.dbzer0.com 0 points 6 days ago* (last edited 6 days ago)

You can use a simple script to run anything inside the same container as the base game:

#!/bin/bash

export STEAM_COMPAT_CLIENT_INSTALL_PATH="$HOME/.local/share/Steam" export STEAM_COMPAT_DATA_PATH="Location of the prefix"

"$HOME/.local/share/Steam/steamapps/common/Proton 10.0/proton" run "/$HOME/Downloads/StellarisExp1.exe"

Just change the parts you need to e.g. the version of proton you want to use, the name of the installer and so on.