20 lines
381 B
Lua
20 lines
381 B
Lua
hl.window_rule({
|
|
name = "suppress-maximize-events",
|
|
match = {class = ".*"},
|
|
suppress_event = "maximize"
|
|
})
|
|
|
|
hl.window_rule({
|
|
name = "fix-xwayland-drags",
|
|
match = {
|
|
class = "^$",
|
|
title = "^$",
|
|
xwayland = true,
|
|
float = true,
|
|
fullscreen = false,
|
|
pin = false,
|
|
},
|
|
|
|
no_focus = true,
|
|
})
|