diff options
Diffstat (limited to 'steam/steam-native.sh')
-rwxr-xr-x | steam/steam-native.sh | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/steam/steam-native.sh b/steam/steam-native.sh deleted file mode 100755 index 2f26bbb22..000000000 --- a/steam/steam-native.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -export STEAM_RUNTIME=0 -# Workaround for dbus fatal termination related coredumps (SIGABRT) -# https://github.com/ValveSoftware/steam-for-linux/issues/4464 -export DBUS_FATAL_WARNINGS=0 -# Override some libraries as these are what games linked against. -export LD_LIBRARY_PATH="/usr/lib/steam:/usr/lib32/steam${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH" - -prt-get isinst apulse-32 > /dev/null - -if [ $? = 0 ]; then - exec /usr/bin/apulse-32 /usr/bin/steam "$@" -else - exec /usr/bin/steam "$@" -fi |