Skip to content

Instantly share code, notes, and snippets.

@TheFloatingBrain
Created September 23, 2021 21:07
Show Gist options
  • Save TheFloatingBrain/fb431627c6c690e2a8a578f6648b92c5 to your computer and use it in GitHub Desktop.
Save TheFloatingBrain/fb431627c6c690e2a8a578f6648b92c5 to your computer and use it in GitHub Desktop.
from protonfixes import util
from protonfixes.logger import log
def main():
util.set_environment('STEAM_COMPAT_DATA_PATH',
"/.steam/steam/steamapps/compatdata")
log('Applying fixes for Space Engineers')
log("Installing dotnet4.6.1")
util.protontricks('dotnet461')
log("Installed dotnet 4.6.1")
log("Installing dotnet4.6.2")
util.protontricks('dotnet462')
log("Installed dotnet 4.6.2")
log("Installing dotnet4.7.1")
util.protontricks('dotnet471')
log("Installed dotnet 4.7.1")
log("Done!")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment