Skip to content

Instantly share code, notes, and snippets.

@jfeilbach
Last active June 1, 2026 17:44
Show Gist options
  • Select an option

  • Save jfeilbach/8909aae89dc7424c71432b97577ba81c to your computer and use it in GitHub Desktop.

Select an option

Save jfeilbach/8909aae89dc7424c71432b97577ba81c to your computer and use it in GitHub Desktop.
Dune Awakening Steam Linux Notes

Dune Awakening Steam Linux

This is how to skip the Funcom launcher, intro movie, and company logo splashes. You can change the launch options in the steam properties for this game. eval is just a way to run a concatenated command through a subshell. The Windows Steam way will obviously not work.

eval $(echo "%command% -nosplash -nostartupscreen -continuesession" \
| sed -e 's|/Launcher/FuncomLauncher.exe|/DuneSandbox/Binaries/Win64/DuneSandbox_BE.exe|g')

You will need to remove the \ from the above line as Steam will not correctly interpret it.

  • nosplash skips the Funcom launcher

  • nostartupscreen skips the developer and publisher company logos

  • continue session skips the into movie

This should take your game client directly to the shader check.

Because the game launcher was skipped and never loaded, some of the required data that the authentication process to the live game service needs, will expire after some amount of time. It happened after a significant update. This has only happened a couple of times. It is actually a rare event. If you see an error like "FLS login failed" or "You cannot proceed into the game because the login into Funcom Live Services Failed" follow these simple steps.

  • Remove the launch options from steam.
  • Launch the game with default options.
  • Once in the Lanucher, press ACCOUNT (top right), then in the browser that opens, press login with Steam, login.
  • Return to the Funcom launcher and launch the game.
  • You can safely add the launch options back into the game properties in Steam afterwards.

Game will not start.

If Dune Awakening will not start you may need to deletge your Proton prefix. This is located in the Steam directory of the drive with the game installed. Just delete the game ID directory.

rm -rfv /home/<username>/.local/share/Steam/steamapps/compatdata/1172710

Then restart the game. This will also reset all of your game settings to the default settings. You will not lose anything in game.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment