From 6e5e96d67e17a7c095e80c2b5d53f070441f2b53 Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 21 Mar 2016 13:12:32 +0100 Subject: [PATCH] bindings: invert the way we switch focus between screens For some reason, the screens seem to be in inverted order. --- rc/bindings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc/bindings.lua b/rc/bindings.lua index df16598..7cc9160 100644 --- a/rc/bindings.lua +++ b/rc/bindings.lua @@ -192,11 +192,11 @@ config.keys.global = awful.util.table.join( awful.key({ modkey, }, "u", toggle_im, "Toggle Pidgin conversation window"), awful.key({ modkey, "Control" }, "j", function () - screen_focus( 1) + screen_focus(-1) end, "Jump to next screen"), awful.key({ modkey, "Control" }, "k", function () - screen_focus(-1) + screen_focus( 1) end), keydoc.group("Layout manipulation"),