awesome: Make modkey+o focus the "next" screen
Have modkey+shift+o replace the old modkey+o functionality
This commit is contained in:
parent
bbde295be6
commit
b9e64b75ee
1 changed files with 3 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue