While you're here, please consider supporting GamingOnLinux on:
Reward Tiers:
Patreon. Plain Donations:
PayPal.
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Reward Tiers:
This ensures all of our main content remains totally free for everyone! Patreon supporters can also remove all adverts and sponsors! Supporting us helps bring good, fresh content. Without your continued support, we simply could not continue!
You can find even more ways to support us on this dedicated page any time. If you already are, thank you!
Login / Register
- Nexus Mods retire their in-development cross-platform app to focus back on Vortex
- Windows compatibility layer Wine 11 arrives bringing masses of improvements to Linux
- GOG plan to look a bit closer at Linux through 2026
- Hytale has arrived in Early Access with Linux support
- Valve reveal all the Steam events scheduled for 2026
- > See more over 30 days here
- Weekend Players' Club 2026-01-16
- whizse - Venting about open source security.
- rcrit - Away later this week...
- Liam Dawe - Welcome back to the GamingOnLinux Forum
- simplyseven - A New Game Screenshots Thread
- JohnLambrechts - See more posts
How to setup OpenMW for modern Morrowind on Linux / SteamOS and Steam Deck
How to install Hollow Knight: Silksong mods on Linux, SteamOS and Steam Deck
Method 1:
Spoiler, click me
Method 2:
Spoiler, click me
printf "REGEDIT4\n[HKEY_CURRENT_USER\Software\Wine\\\Explorer]\n\"Desktop\"=\"Default\"\n[HKEY_CURRENT_USER\Software\Wine\\\Explorer\Desktops]\n\"Default\"=\"1920x1080\"\n[HKEY_CURRENT_USER\Software\Wine\\X11 Driver]\n\"GrabFullscreen\"=\"N\"" >> temp.reg && find -name "pfx" | xargs readlink -f | xargs -I{} env WINEPREFIX={} regedit temp.reg && rm temp.regThis will change/add the registry keys needed to enable virtual desktop and disable mouse grabbing for all currently installed Proton prefixes (if you install any game later on you have to rerun those commands. Two important notes: This will create a temporary file called temp.reg and removes the file afterwards. If you already have a filled called that in the directory you're running those commands from it will overwrite and delete that file! Another thing is that mouse grabbing may actually be desired for some games since those may not work without that feature (which is the reason mouse grabbing was enabled by default). In that case you can use those commands which do the same as the ones above just without disabling mouse grabbing:
printf "REGEDIT4\n[HKEY_CURRENT_USER\Software\Wine\\\Explorer]\n\"Desktop\"=\"Default\"\n[HKEY_CURRENT_USER\Software\Wine\\\Explorer\Desktops]\n\"Default\"=\"1920x1080\"" >> temp.reg && find -name "pfx" | xargs readlink -f | xargs -I{} env WINEPREFIX={} regedit temp.reg && rm temp.regRunning winecfg or regedit in a Proton prefix is not officially supported and winecfg/regedit initializes some stuff when run in one. While I did test several games after using it I can not promise that it won't cause unexpected behavior.
I'm a beginner when it comes to bash so if you have any suggestions please tell me :)
Also if you have any questions ask away.
PS: I give absolutely no warranty for doing any of the things I mentioned. Never run any commands you don't understand especially if you found them on the internet.
Just use
.../steamapps/common/Proton 3.7 Beta/dist/bin/wine winecfginstead.
You can also use this path with the WINE environment variable if you need to run winetricks for a proton prefix.
View PC info
export SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS=0into
/etc/environmentfor example.multimonitor mouse grab, most games offer mouse release when bringing up the menu (escape menu), but some that don't i usually just switch workspace to chat on my other monitor, so i dont need to alt+tab then.
I already had SDL_VIDEO_MINIMIZE_ON_FOCUS_LOSS set to zero and while it works with most native games it doesn't work with proton.
View PC info