From 194e032901e1415cd26b771bc92b484da10e507e Mon Sep 17 00:00:00 2001 From: Reiner Herrmann Date: Fri, 8 Apr 2016 23:33:40 +0200 Subject: awesome: swap j and k for focusing screens --- awesome/rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'awesome/rc.lua') diff --git a/awesome/rc.lua b/awesome/rc.lua index c41b962..192b1eb 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -304,8 +304,8 @@ globalkeys = awful.util.table.join( -- Layout manipulation awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( 1) end), awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end), - awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative( 1) end), - awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative(-1) end), + awful.key({ modkey, "Control" }, "j", function () awful.screen.focus_relative(-1) end), + awful.key({ modkey, "Control" }, "k", function () awful.screen.focus_relative( 1) end), awful.key({ modkey, }, "u", awful.client.urgent.jumpto), awful.key({ modkey, }, "Tab", function () -- cgit v1.2.3