Only do not honor hints for urxvt
This commit is contained in:
parent
ba445d7a16
commit
746d5d5a84
|
@ -456,8 +456,7 @@ awful.rules.rules = {
|
||||||
keys = clientkeys,
|
keys = clientkeys,
|
||||||
buttons = clientbuttons,
|
buttons = clientbuttons,
|
||||||
screen = awful.screen.preferred,
|
screen = awful.screen.preferred,
|
||||||
placement = awful.placement.no_overlap+awful.placement.no_offscreen,
|
placement = awful.placement.no_overlap+awful.placement.no_offscreen
|
||||||
size_hints_honor = false
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -471,6 +470,10 @@ awful.rules.rules = {
|
||||||
}
|
}
|
||||||
}, properties = { floating = true }},
|
}, properties = { floating = true }},
|
||||||
|
|
||||||
|
-- Use full space for urxvt
|
||||||
|
{ rule = { class = "URxvt" },
|
||||||
|
properties = { size_hints_honor = false } },
|
||||||
|
|
||||||
-- Default tags
|
-- Default tags
|
||||||
{ properties = { tag = "二" }, rule = { class = "Chromium" } },
|
{ properties = { tag = "二" }, rule = { class = "Chromium" } },
|
||||||
{ properties = { tag = "二" }, rule = { class = "Firefox" } },
|
{ properties = { tag = "二" }, rule = { class = "Firefox" } },
|
||||||
|
|
Reference in a new issue