Fix placement of Conkeror on multi-head setups
This commit is contained in:
parent
4281a357f4
commit
7d994c389a
1 changed files with 6 additions and 3 deletions
|
@ -443,10 +443,13 @@ awful.rules.rules = {
|
||||||
-- properties = { tag = tags[1][2] } },
|
-- properties = { tag = tags[1][2] } },
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- If there is more than one list of tags, add a rule that puts all
|
||||||
|
-- "Conkeror" windows on tag 1 of screen 2 (the second list of tags).
|
||||||
if #tags > 1 then
|
if #tags > 1 then
|
||||||
awful.util.table.join(awful.rules.rules,
|
awful.rules.rules =
|
||||||
{ { rule = { class = "Conkeror" },
|
awful.util.table.join(awful.rules.rules,
|
||||||
properties = { tag = tags[2][1] } } })
|
{ { rule = { class = "Conkeror" },
|
||||||
|
properties = { tag = tags[2][1] } } })
|
||||||
end
|
end
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue