From 2af88d978ea4bc1da0b8476502c80926fbfd5ebd Mon Sep 17 00:00:00 2001 From: the-sane <3657071+the-sane@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:03:04 -0400 Subject: [PATCH] Remove winepath. Need to call runner binary directly --- lib/sc-launch.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/lib/sc-launch.sh b/lib/sc-launch.sh index 1b19a67..db27205 100755 --- a/lib/sc-launch.sh +++ b/lib/sc-launch.sh @@ -17,7 +17,6 @@ # Configure the environment # Add additional environment variables here as needed export WINEPREFIX="$HOME/Games/star-citizen" -#export WINEPATH="/path/to/custom/wine/bin/wine64" export EOS_USE_ANTICHEATCLIENTNULL=1 export __GL_SHADER_DISK_CACHE=1 export __GL_SHADER_DISK_CACHE_SIZE=1073741824 @@ -25,18 +24,24 @@ export radv_zero_vram="true" #export DXVK_HUD=fps,compiler #export MANGOHUD=1 +############################################# # Run optional prelaunch and postexit scripts +############################################# # To use, update the game install paths here, then create the scripts with your desired actions in them # # "$HOME/Games/star-citizen/sc-prelaunch.sh" # trap "$HOME/Games/star-citizen/sc-postexit.sh" EXIT +################# # Launch the game -# +################# # To enable feral gamemode, replace the launch line below with: # gamemoderun wine "C:\Program Files\Roberts Space Industries\RSI Launcher\RSI Launcher.exe" # # To enable gamescope and feral gamemode, replace the launch line below with the desired gamescope arguments. For example: # gamescope --hdr-enabled -W 2560 -H 1440 --force-grab-cursor gamemoderun wine "C:\Program Files\Roberts Space Industries\RSI Launcher\RSI Launcher.exe" +# +# To use a custom wine runner, simply call its binary +# /path/to/custom/runner/bin/wine "C:\Program Files\Roberts Space Industries\RSI Launcher\RSI Launcher.exe" wine "C:\Program Files\Roberts Space Industries\RSI Launcher\RSI Launcher.exe"