Graphics settings & stutter fixes — Linux/Proton edition
Hardware: RTX 3060 Ti · OS: Ubuntu 26.04 · Display: Wayland/GNOME · Game via: Steam Proton
Grim Dawn runs on a heavily modified Titan Quest engine from ~2006. The occasional stutter you see on ultra settings with a 3060 Ti is almost certainly CPU core scheduling or Proton/Wayland quirks, not GPU limits. Even people with RTX 4090s report the same occasional hitch.
On the plus side: multiple Crate forum users report GD actually runs smoother on Linux than Windows once properly configured.
Your 3060 Ti handles these with zero trouble:
Deferred Rendering = ON. Always. It reduces total draw calls by ~30% by trading VRAM for rendering efficiency. This is especially impactful through DXVK/Proton. The only downside is it forces FXAA (slightly blurry) — if that bothers you, force AA through Nvidia driver settings instead.
Stock Proton has a known Wayland + VSync bug (GitHub issue #9518). GE-Proton 10-32+ has it fixed.
protonup CLICorrupted shader cache is a known cause of stutter on Proton/Steam Deck.
A Crate forum user (July 2025) reported this fixed stutter when highlighting items on the ground.
GD hammers Core 0 while leaving other cores idle. Resetting the affinity spreads the load evenly.
Option A — One-liner (do this each session):
# Find Grim Dawn PID and reset core affinity PID=$(pgrep -f "Grim Dawn") taskset -p -c 1-$(($(nproc)-1)) $PID # remove core 0 sleep 1 taskset -p -c 0-$(($(nproc)-1)) $PID # re-add core 0
Option B — Core Switcher tool (from Crate forums, has a Linux bash script version). Download it, map to a keyboard shortcut, press Ctrl+Alt+O after launching GD.
The config file is inside the Proton prefix:
# Navigate to: ~/SteamLibrary/steamapps/compatdata/219990/pfx/drive_c/users/steamuser/\ Documents/My Games/Grim Dawn/Settings/options.txt
Find and set:
maxResourceThreads = 6 # set to your PHYSICAL core count (not threads!) forceSingleProcessorMode = false
In-game VSync misbehaves on Wayland+Nvidia. Use this config:
mangohud --fps-limit 60 %command%Or install MangoHud and let it handle frame pacing instead of the game's VSync.
sudo apt install linux-lowlatency is worth a trytaskset one-liner each sessionmaxResourceThreads to physical core countIf it's still stuttering after all that, check your kernel version and Nvidia driver branch. You may also want to test with stock Proton for comparison — some users report better results on certain Proton 8/9 releases than GE-Proton depending on their exact hardware combo.
Sources: Crate Entertainment Forums, ProtonDB, PCGamingWiki, Steam Community discussions, Reddit r/Grimdawn, GitHub Proton issue #9518. Compiled by Pengy on 2026-08-13.