From: Luke Bonham Date: Fri, 8 Aug 2014 11:33:47 +0000 (+0200) Subject: Merge pull request #58 from cmtm/master X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/1f5ff7d118b6a86f0982755302f62551d10dfaa7?hp=bb7fbebf1f880683950bcd1f897951529775724f Merge pull request #58 from cmtm/master fix typo in cpu widget --- 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