From 8ef2e5beed7d47254087f6d313dcf23db6a5dde5 Mon Sep 17 00:00:00 2001 From: Samir Benmendil Date: Mon, 19 Sep 2022 11:48:16 +0100 Subject: [PATCH] awesome: shift clients in the other direction This is to be consistent with the order they are displayed in the topbar. --- awesome/bindings.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awesome/bindings.lua b/awesome/bindings.lua index 8d96009..e53b301 100644 --- a/awesome/bindings.lua +++ b/awesome/bindings.lua @@ -41,9 +41,9 @@ globalkeys = gears.table.join(globalkeys, {description = "show main menu", group = "awesome"}), -- 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, {description = "swap with next client by index", group = "client"}), - awful.key({ modkey, "Shift" }, "k", function () awful.client.swap.byidx( -1) end, + awful.key({ modkey, "Shift" }, "j", function () awful.client.swap.byidx( -1) end, {description = "swap with previous client by index", group = "client"}), awful.key({ modkey, }, "#49", function () awful.screen.focus_relative( 1) end, -- that's the key left of 1 (chronos) {description = "focus the next screen", group = "screen"}), -- 2.48.1