Bugfix: client functions need a parameter.
This commit is contained in:
parent
8abc0819df
commit
379745801b
|
@ -231,10 +231,10 @@ clientkeys = awful.util.table.join(
|
||||||
awful.key({ modkey, "Control" }, "space", awful.client.floating.toggle ),
|
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, "Control" }, "Return", function (c) c:swap(awful.client.getmaster()) end),
|
||||||
awful.key({ modkey, }, "o", awful.client.movetoscreen ),
|
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)
|
awful.client.movetoscreen(c, mouse.screen + 1)
|
||||||
end),
|
end),
|
||||||
awful.key({ modkey, "Shift" }, "l", function ()
|
awful.key({ modkey, "Shift" }, "l", function (c)
|
||||||
awful.client.movetoscreen(c, mouse.screen - 1)
|
awful.client.movetoscreen(c, mouse.screen - 1)
|
||||||
end),
|
end),
|
||||||
awful.key({ modkey, "Control" }, "o", function (c) c.ontop = not c.ontop end),
|
awful.key({ modkey, "Control" }, "o", function (c) c.ontop = not c.ontop end),
|
||||||
|
|
Loading…
Reference in a new issue