From 44facf162420816bdcfc851d4ff5e033996fa948 Mon Sep 17 00:00:00 2001 From: Axujen Date: Wed, 30 Jul 2014 14:37:20 +0000 Subject: [PATCH] Use the first client(master) as the central window --- layout/centerwork.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/layout/centerwork.lua b/layout/centerwork.lua index b8175ea..939f18c 100644 --- a/layout/centerwork.lua +++ b/layout/centerwork.lua @@ -37,7 +37,7 @@ function centerwork.arrange(p) if #cls > 0 then -- Main column, fixed width and height. - local c = cls[#cls] + local c = cls[1] local g = {} local mainwid = math.floor(wa.width * mwfact) local slavewid = wa.width - mainwid @@ -57,7 +57,7 @@ function centerwork.arrange(p) if #cls > 1 then local at = 0 - for i = (#cls - 1),1,-1 + for i = (#cls),2,-1 do -- It's all fixed. If there are more than 5 clients, -- those additional clients will float. This is -- 2.39.2