From 379745801b14b1bbbeaec7bd0603c8552e625917 Mon Sep 17 00:00:00 2001 From: crater2150 Date: Sat, 7 Mar 2015 20:31:43 +0100 Subject: [PATCH] Bugfix: client functions need a parameter. --- bindings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings.lua b/bindings.lua index 9b9381f..a5d8d62 100644 --- a/bindings.lua +++ b/bindings.lua @@ -231,10 +231,10 @@ clientkeys = awful.util.table.join( awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ), awful.key({ modkey, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end), awful.key({ modkey, }, "o", awful.client.movetoscreen ), - awful.key({ modkey, "Shift" }, "h", function () + awful.key({ modkey, "Shift" }, "h", function (c) awful.client.movetoscreen(c, mouse.screen + 1) end), - awful.key({ modkey, "Shift" }, "l", function () + awful.key({ modkey, "Shift" }, "l", function (c) awful.client.movetoscreen(c, mouse.screen - 1) end), awful.key({ modkey, "Control" }, "o", function (c) c.ontop = not c.ontop end),