Stop Minimizing on Focus Loss keeps Minecraft from minimizing itself when you alt-tab, click another monitor, or otherwise move focus away from the game while using native fullscreen.
It is a tiny client-side utility mod. Install the jar that matches your Minecraft version and loader, and the fullscreen window should stay open when focus changes.
On Fabric and Quilt, this mod aims to actively support all Minecraft versions starting from 1.14 to the newest release. Quilt builds are dedicated Quilt ports, not reused Fabric jars.
On Forge, modern GLFW-based ports support 1.13.2, 1.16.5, 1.17.x, 1.18.x, 1.19.x, 1.20.1, and 1.20.6. Legacy LWJGL2 Forge ports are also available for 1.7.10, 1.8.9, and 1.12.x.
On NeoForge, this mod supports 1.20.1, 1.20.6, and versions starting from 1.21 to the newest release.
LiteLoader, Babric, and Better Than Adventure builds are not distributed on CurseForge. Those versions are available on the Modrinth page instead.
The mod has zero dependencies. Even the Fabric version does not use Fabric API.
Modern Minecraft versions use LWJGL3 and GLFW. GLFW has a GLFW_AUTO_ICONIFY window attribute which, by default, can minimize a native fullscreen window when it loses focus. The modern ports set that attribute to GLFW_FALSE on Minecraft's GLFW window handle:
glfwSetWindowAttrib(windowHandle, GLFW_AUTO_ICONIFY, GLFW_FALSE);
Different Minecraft versions expose the native window through different classes, so each target hooks the version-appropriate window class:
com.mojang.blaze3d.platform.Window after <init> and setMode.window, while others name it handle.1.16.5 port injects into net.minecraft.client.MainWindow.Minecraft 1.7.10, 1.8.9, and 1.12.x use LWJGL2, not LWJGL3/GLFW. LWJGL2 does not have GLFW_AUTO_ICONIFY, so the legacy Forge ports cannot use the same one-line GLFW fix.
Instead, the Forge LWJGL2 ports patch the relevant Minecraft and LWJGL2 display code directly:
1.7.10, Forge 1.8.9, and Forge 1.12.x use Forge/FML coremod transformers.org.lwjgl.opengl.LinuxDisplay to skip the fullscreen focus-loss iconify path.org.lwjgl.opengl.WindowsDisplay to skip the fullscreen focus-loss minimize/display-mode-reset path.1.7.10, 1.8.9, and 1.12.x, the mod also suppresses Minecraft's own lost-focus fullscreen toggle logic.macOS is the main limitation for LWJGL2 builds. The relevant fullscreen behavior is handled through LWJGL2's native Cocoa backend rather than patchable Java-side display code. Because of that, LWJGL2 macOS support may be limited compared to Linux, Windows, and Unix-like systems such as FreeBSD or OpenBSD. The modern LWJGL3/GLFW ports do not have this same limitation.