New comment by okawo80085 on void-packages repository https://github.com/void-linux/void-packages/issues/41388#issuecomment-2191264938 Comment: Correction, Insurgency still does not work, however VRChat does? But only when launched using `launch.exe` instead of `VRChat.exe` Script that i used to test looks like this ```bash #!/bin/bash STEAM_PATH="$HOME/.local/share/Steam/ubuntu12_32" PROTON_PATH="$HOME/.local/share/Steam/steamapps/common/Proton - Experimental" LINUX_RUNTIME_PATH="$HOME/.local/share/Steam/steamapps/common/SteamLinuxRuntime_sniper" APP_BIN=$2 APP_ID=$1 echo Launching \'$APP_BIN\' AppId=$APP_ID without _v2-entry-point... echo $STEAM_PATH/reaper SteamLaunch AppId=$APP_ID -- $STEAM_PATH/steam-launch-wrapper -- "$PROTON_PATH"/proton waitforexitandrun $APP_BIN ``` VRChat works fine if i launch it like this ``` ./run_steam_without_v2_entry_point.sh 438100 ~/.steam/steam/steamapps/common/VRChat/launch.exe ``` However Insurgency does not work fine if i launch it in a similar fashion ``` ./run_steam_without_v2_entry_point.sh 581320 ~/.steam/steam/steamapps/common/sandstorm/Insurgency.exe ```