Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem
I'm running on Linux Mint, so I'm not sure if the config may be located somewhere slightly different on your system.
Create the following file on your desktop: nano ~/Desktop/helldivers2_fullscreen_false.sh
Paste the contents below into it:
#!/bin/bash
# Author: Dextroz
# LICENSE: MIT
# Declare path to Helldivers 2 configuration file
CONFIG="/home/${USER}/.steam/debian-installation/steamapps/compatdata/553850/pfx/drive_c/users/steamuser/AppData/Roaming/Arrowhead/Helldivers2/user_settings.config"
# Replace the fullscreen = true with false so the game launches
sed -i "s/fullscreen = true/fullscreen = false/" "${CONFIG}"
echo "Successfully patched Helldivers 2 configuration file to disable fullscreen."
Make it executable: chmod +x ~/Desktop/helldivers2_fullscreen_false.sh
Now, when you want to play, just double click on the script on your desktop and choose run and the config is set :)
Happy diving!