Use system-wide Wine, DXVK & D9VK for Steam Play/Proton (Windows) games directly from Linux Steam client
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
384 B

5 years ago
  1. #!/bin/sh
  2. export STEAM_RUNTIME=0
  3. # Workaround for dbus fatal termination related coredumps (SIGABRT)
  4. # https://github.com/ValveSoftware/steam-for-linux/issues/4464
  5. export DBUS_FATAL_WARNINGS=0
  6. # Override some libraries as these are what games linked against.
  7. export LD_LIBRARY_PATH="/usr/lib/steam:/usr/lib32/steam${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH"
  8. exec /usr/lib/steam/steam "$@"