2
0
mirror of https://github.com/ValveSoftware/Proton synced 2025-08-31 22:55:18 +00:00

proton: Load environment overrides from a file on disk

This commit is contained in:
Andrew Eikum
2018-06-21 09:09:10 -05:00
parent 3d337e9683
commit 971ba6438b
4 changed files with 65 additions and 38 deletions

22
user_settings.sample.py Executable file
View File

@@ -0,0 +1,22 @@
#!/usr/bin/python2.7
#to enable these settings, name this file "user_settings.py"
user_settings = {
#logs are saved to $HOME/steam-$STEAM_APP_ID.log, overwriting any previous log with that name
"WINEDEBUG": "+timestamp,+pid,+tid,+seh,+debugstr",
"DXVK_LOG_LEVEL": "info",
#Enable DXVK's HUD
# "DXVK_HUD": "devinfo,fps",
#Use wined3d for d3d11 instead of dxvk
# "PROTON_USE_WINED3D11": "1",
#Disable d3d11 entirely
# "PROTON_NO_D3D11": "1",
#Disable in-process synchronization primitives
# "PROTON_NO_ESYNC": "1",
}