1
0
Fork 0

removing border on maximize

This commit is contained in:
Von Random 2014-08-19 02:02:23 +04:00
parent c1a8b3593e
commit ea419cd05d

5
rc.lua
View file

@ -433,6 +433,11 @@ clientkeys = awful.util.table.join(
function (c)
c.maximized_horizontal = not c.maximized_horizontal
c.maximized_vertical = not c.maximized_vertical
if c.maximized_horizontal == true and c.maximized_vertical == true then
c.border_width = 0
else
c.border_width = beautiful.border_width
end
end)
)