28 lines
454 B
Lua
28 lines
454 B
Lua
-- JetBrains Rules start
|
|
hl.window_rule({
|
|
name = "tab-drag-no-initial-focus",
|
|
match = {
|
|
class = "^jetbrains-(?!toolbox)",
|
|
title = "^(!win.*)",
|
|
},
|
|
no_initial_focus = true,
|
|
})
|
|
|
|
hl.window_rule({
|
|
name = "no-focus-tab-drag-jb",
|
|
match = {
|
|
class = "^(.*jetbrains.*)$",
|
|
title = "^\\s$",
|
|
},
|
|
no_focus = true,
|
|
})
|
|
-- JetBrains Rules end
|
|
|
|
hl.window_rule({
|
|
name = "Picture-in-Picture",
|
|
match = {
|
|
title = "Picture-in-Picture",
|
|
},
|
|
float = true,
|
|
})
|