diff --git a/rc.lua.multicolor b/rc.lua.multicolor index a09181d..3208890 100755 --- a/rc.lua.multicolor +++ b/rc.lua.multicolor @@ -697,9 +697,11 @@ for s = 1, screen.count() do screen[s]:connect_signal("arrange", function () c.border_width = beautiful.border_width -- No borders with only one visible client - elseif #clients == 1 or layout == "max" then + elseif #clients == 1 then clients[1].border_width = 0 - awful.client.moveresize(0, 0, 2, 2, clients[1]) + if layout ~= "max" then + awful.client.moveresize(0, 0, 2, 0, clients[1]) + end else c.border_width = beautiful.border_width end diff --git a/themes/copland/wall.png b/themes/copland/wall.png index 23eccbd..2533ce6 100644 Binary files a/themes/copland/wall.png and b/themes/copland/wall.png differ