Rules update
This commit is contained in:
parent
5140792411
commit
788e15b54e
19
rules.lua
19
rules.lua
|
@ -44,6 +44,23 @@ awful.rules.rules = {
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
|
{ rule = { class = "qutebrowser", type = "utility" },
|
||||||
|
-- workaround for qutebrowser dropdown problems. does not fully fix the
|
||||||
|
-- problems :-/
|
||||||
|
properties = {
|
||||||
|
border_width = 0, focus = false,
|
||||||
|
floating = true, size_hints_honor = true,
|
||||||
|
focusable = false, skip_taskbar = true,
|
||||||
|
ontop = true, above = true,
|
||||||
|
placement = function() return false end,
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{ rule = { name = "", class = "jetbrains-idea", type = "dialog" },
|
||||||
|
properties = { placement = false },
|
||||||
|
callback = function(c)
|
||||||
|
c:connect_signal("unfocus", function() client.focus = c end)
|
||||||
|
end
|
||||||
|
},
|
||||||
{
|
{
|
||||||
rule = { class = "Passprompt" },
|
rule = { class = "Passprompt" },
|
||||||
properties = { ontop = true, focus = true}
|
properties = { ontop = true, focus = true}
|
||||||
|
@ -168,7 +185,7 @@ awful.rules.rules = {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
rule = { class = "URxvt" },
|
rule_any = { class = {"URxvt", "Alacritty" } },
|
||||||
properties = {
|
properties = {
|
||||||
opacity = 0.8
|
opacity = 0.8
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue