From: Don Armstrong Date: Wed, 3 Aug 2011 23:00:24 +0000 (+0000) Subject: fix missing comma X-Git-Url: https://git.donarmstrong.com/?p=x_base.git;a=commitdiff_plain;h=8fc895ef3e92b048f792cf0ab6bc1cabb5ee63bf fix missing comma --- diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 813cea9..0c3b1f5 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -249,7 +249,7 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ), awful.key({ modkey, }, "space", function (c) c:swap(awful.client.getmaster()) end), awful.key({ modkey, }, "o", awful.client.movetoscreen ), - awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end) + awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end), awful.key({ modkey, "Shift" }, "r", function (c) c:redraw() end), awful.key({ modkey, "Shift" }, "m", function (c) c.minimized = not c.minimized end), awful.key({ modkey, }, "m",