From 2272d9cb71149e0a6d28ae858492585359c5b098 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Wed, 2 Dec 2020 16:52:54 +0100 Subject: bindings: use shift+h/l to swap clients on a page Currently bound shift+j/k will be used for other purposes. --- bindings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bindings.lua b/bindings.lua index 559b5d3..8419a54 100644 --- a/bindings.lua +++ b/bindings.lua @@ -72,8 +72,8 @@ function M.create(workspace) awful.client.setmaster(client.focus) end end), - 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, "Shift" }, "h", function () awful.client.swap.byidx( 1) end), + awful.key({ modkey, "Shift" }, "l", function () awful.client.swap.byidx( -1) end), awful.key({ modkey, }, "u", awful.client.urgent.jumpto), -- cgit v1.2.3