bindings: invert the way we switch focus between screens

For some reason, the screens seem to be in inverted order.
This commit is contained in:
Vincent Bernat 2016-03-21 13:12:32 +01:00
parent 04d9fb8da6
commit 6e5e96d67e

View file

@ -192,11 +192,11 @@ config.keys.global = awful.util.table.join(
awful.key({ modkey, }, "u", toggle_im, awful.key({ modkey, }, "u", toggle_im,
"Toggle Pidgin conversation window"), "Toggle Pidgin conversation window"),
awful.key({ modkey, "Control" }, "j", function () awful.key({ modkey, "Control" }, "j", function ()
screen_focus( 1) screen_focus(-1)
end, end,
"Jump to next screen"), "Jump to next screen"),
awful.key({ modkey, "Control" }, "k", function () awful.key({ modkey, "Control" }, "k", function ()
screen_focus(-1) screen_focus( 1)
end), end),
keydoc.group("Layout manipulation"), keydoc.group("Layout manipulation"),