From fb564e3ac1484d0d2b9c4b73b1264579368d4dea Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Wed, 29 Jul 2026 17:45:16 -0700 Subject: [PATCH] Fix DaVinci Resolve window behavior Open the main window fullscreen so the bar does not cover Resolve's menu, and let parent windows yield focus so their dialogs remain usable. Match both free and Studio editions. Co-authored-by: 28allday --- default/hypr/apps/davinci-resolve.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default/hypr/apps/davinci-resolve.lua b/default/hypr/apps/davinci-resolve.lua index aba9414d..6f6abda3 100644 --- a/default/hypr/apps/davinci-resolve.lua +++ b/default/hypr/apps/davinci-resolve.lua @@ -6,3 +6,6 @@ o.window(".*[Rr]esolve.*", { tag = "-default-opacity", opacity = "1 1", }) + +o.window({ class = ".*[Rr]esolve.*", title = "^DaVinci Resolve( Studio)? - .+$" }, { fullscreen = true }) +o.window({ class = ".*[Rr]esolve.*", title = "^(DaVinci Resolve( Studio)? - .+|Project Manager)$" }, { stay_focused = false })