Files
omarchycn/default/hypr/apps/davinci-resolve.lua
T
David Heinemeier Hanssonand28allday fb564e3ac1 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 <gavin.nugent@hey.com>
2026-07-29 17:45:27 -07:00

12 lines
480 B
Lua

-- DaVinci Resolve window focus handling. Kept fully opaque: the default
-- translucency distorts colour-critical grading work.
o.window(".*[Rr]esolve.*", {
float = true,
stay_focused = true,
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 })