summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnton Khirnov <anton@khirnov.net>2020-12-02 16:52:54 +0100
committerAnton Khirnov <anton@khirnov.net>2020-12-02 16:52:54 +0100
commit2272d9cb71149e0a6d28ae858492585359c5b098 (patch)
tree61eae1532b6039ad781beabf8430c44cca15195c
parentf5ad91619df0a398fad00e01e30c0fbd278f963f (diff)
bindings: use shift+h/l to swap clients on a page
Currently bound shift+j/k will be used for other purposes.
-rw-r--r--bindings.lua4
1 files 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),