Last active
October 9, 2023 23:06
-
-
Save GloriousEggroll/8a8531a4b0b66317183c58237d1d6aca to your computer and use it in GitHub Desktop.
steam native linux game fixups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/bash | |
SteamShutdown() { | |
if [[ ! -z $(ps aux | grep "steam.sh" | grep -v color | grep -v grep) ]]; then | |
steamwasrunning=1 | |
steam -shutdown > /dev/null 2>&1 & | |
while [[ ! -z $(ps aux | grep "steam.sh" | grep -v color | grep -v grep) ]]; do | |
sleep 1 | |
done | |
fi | |
} | |
SteamStartup() { | |
if [[ ! -z $steamwasrunning ]]; then | |
gio launch /usr/share/applications/steam.desktop > /dev/null 2>&1 & | |
fi | |
} | |
TF2FIX() { | |
ex /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf <<eof | |
$appsentryline insert | |
"440" | |
{ | |
"LaunchOptions" "LD_PRELOAD=/lib/libtcmalloc_minimal.so.4 %command%" | |
} | |
. | |
xit | |
eof | |
fixesapplied=1 | |
} | |
PAYDAY2FIX() { | |
ex /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf <<eof | |
$appsentryline insert | |
"218620" | |
{ | |
"LaunchOptions" "MESA_LOADER_DRIVER_OVERRIDE=zink %command%" | |
} | |
. | |
xit | |
eof | |
fixesapplied=1 | |
} | |
for systemuser in $(ls /home/); do | |
if [[ -d /home/$systemuser/.steam/steam/userdata/ ]]; then | |
for steamuser in $(ls /home/$systemuser/.steam/steam/userdata/); do | |
if [[ -d /home/$systemuser/.steam/steam/userdata/$steamuser/config ]]; then | |
appsline=$(awk '/^ "apps"/{ print NR; exit }' /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf) | |
appsentryline=$(($appsline+2)) | |
# TF2 LLVM16 workaround | |
if [[ ! -z $(cat /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf | grep "\"440\"") ]]; then | |
if [[ -z $(cat /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf | grep "LD_PRELOAD=/lib/libtcmalloc_minimal.so.4") ]]; then | |
SteamShutdown | |
TF2FIX | |
fi | |
fi | |
# Payday 2 OpenGL workaround | |
if [[ ! -z $(cat /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf | grep "\"218620\"") ]]; then | |
if [[ -z $(cat /home/$systemuser/.steam/steam/userdata/$steamuser/config/localconfig.vdf | grep "MESA_LOADER_DRIVER_OVERRIDE=zink") ]]; then | |
SteamShutdown | |
PAYDAY2FIX | |
fi | |
fi | |
fi | |
done | |
fi | |
done | |
if [[ ! -z $fixesapplied ]]; then | |
SteamStartup | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment