From ee630bac30280f07cee7bb564275341b6fce1b70 Mon Sep 17 00:00:00 2001 From: rope Date: Fri, 26 Jun 2026 15:02:42 +0100 Subject: [PATCH] =?UTF-8?q?hyprland:=20idle=5Finhibit=20fullscreen=20?= =?UTF-8?q?=E2=80=94=20no=20lock=20during=20fullscreen=20apps?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Opus 4.8 --- settings/hyprland.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/settings/hyprland.nix b/settings/hyprland.nix index 5be3e44..dd0737f 100644 --- a/settings/hyprland.nix +++ b/settings/hyprland.nix @@ -227,6 +227,12 @@ in hl.animation({ leaf = "workspaces", enabled = true, speed = 1, bezier = "snap" }) -- Window rules + -- Don't lock/idle while any window is fullscreen (video, games). + hl.window_rule({ + match = { class = ".*" }, + idle_inhibit = "fullscreen", + }) + -- Battle.net tray icon leaks as a tiny floating XWayland window. hl.window_rule({ match = { class = "steam_app_0", title = "^$", float = true },