21 lines
332 B
Lua
21 lines
332 B
Lua
hl.window_rule({
|
|
match = {
|
|
class = "Rofi",
|
|
},
|
|
stay_focused = true,
|
|
})
|
|
|
|
-- Set border color to red if window is fullscreen
|
|
hl.window_rule({
|
|
match = { fullscreen = true },
|
|
border_color = "rgb(FF0000) rgb(880808)",
|
|
})
|
|
|
|
-- Suppress maximize events
|
|
hl.window_rule({
|
|
match = {
|
|
class = ".*",
|
|
},
|
|
suppress_event = "maximize",
|
|
})
|