From 25319ea0333c68b85a857668658ba5a3039a27c6 Mon Sep 17 00:00:00 2001 From: rope Date: Mon, 24 Aug 2026 11:30:10 +0100 Subject: [PATCH] hyprland: keep Dungeon Runners tiled, suppress its fullscreen requests Co-Authored-By: Claude Opus 5 --- settings/hyprland.nix | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 4503c9e..8021bbd 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -432,6 +432,14 @@ in suppress_event = "fullscreen maximize", }) + -- Dungeon Runners does the same. Faugus/umu gives non-Steam games + -- the same steam_app_default class, so the generic tile rule above + -- already catches it; this only stops the fullscreen requests. + hl.window_rule({ + match = { class = "steam_app_default", title = "^Dungeon Runners$" }, + suppress_event = "fullscreen maximize", + }) + -- Battle.net requests activation on its own while running, which -- steals focus. Drop those events. --