From 5e3f329292a187da34110393226bcb0e0ddf0001 Mon Sep 17 00:00:00 2001 From: Anton Khirnov Date: Sun, 24 Jan 2021 17:07:31 +0100 Subject: bindings: use Control instead of Alt for swapping screen contents --- bindings.lua | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/bindings.lua b/bindings.lua index 75a2f8e..5c32d05 100644 --- a/bindings.lua +++ b/bindings.lua @@ -106,7 +106,7 @@ function M.create(workspace) end), -- swap two screens - awful.key({ modkey, "Mod1" }, "q", + awful.key({ modkey, "Control" }, "q", function () local screen_dst = mouse.screen local screen_src = utils.screen_physical(1) @@ -117,7 +117,7 @@ function M.create(workspace) end timer.delayed_call(awful.screen.focus, screen_src) end), - awful.key({ modkey, "Mod1" }, "w", + awful.key({ modkey, "Control" }, "w", function () local screen_dst = mouse.screen local screen_src = utils.screen_physical(2) @@ -128,7 +128,7 @@ function M.create(workspace) end timer.delayed_call(awful.screen.focus, screen_src) end), - awful.key({ modkey, "Mod1" }, "e", + awful.key({ modkey, "Control" }, "e", function () local screen_dst = mouse.screen local screen_src = utils.screen_physical(3) -- cgit v1.2.3