awesome: Make modkey+o focus the "next" screen

Have modkey+shift+o replace the old modkey+o functionality
This commit is contained in:
Tom Willemsen 2013-02-08 10:00:11 +01:00
parent bbde295be6
commit b9e64b75ee

View file

@ -325,7 +325,9 @@ clientkeys = awful.util.table.join(
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, }, "o",
function () awful.screen.focus_relative(1) end),
awful.key({ modkey, "Shift" }, "o", awful.client.movetoscreen),
awful.key({ modkey, }, "t", function (c) c.ontop = not c.ontop end),
awful.key({ modkey, }, "m",
function (c)