From 7a764985622f996623a8300d7582acab9bb2a6d1 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 1 Nov 2015 22:12:03 +0100 Subject: [PATCH] Awesome: Unshift modkey+arrows for master and col control --- .config/awesome/rc.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index f2f17bc3..6ded2b96 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -353,10 +353,10 @@ globalkeys = awful.util.table.join( awful.key({ modkey, "Shift" }, "j", function () awful.client.incwfact(-0.05) end), -- Layout organization - awful.key({ modkey, "Shift" }, "Left", function () awful.tag.incnmaster( 1) end), - awful.key({ modkey, "Shift" }, "Right", function () awful.tag.incnmaster(-1) end), - awful.key({ modkey, "Shift" }, "Up", function () awful.tag.incncol( 1) end), - awful.key({ modkey, "Shift" }, "Down", function () awful.tag.incncol(-1) end), + awful.key({ modkey }, "Left", function () awful.tag.incnmaster( 1) end), + awful.key({ modkey }, "Right", function () awful.tag.incnmaster(-1) end), + awful.key({ modkey }, "Up", function () awful.tag.incncol( 1) end), + awful.key({ modkey }, "Down", function () awful.tag.incncol(-1) end), -- Multi screen awful.key({ modkey, "Shift" }, "Next", function () awful.screen.focus_relative( 1) end),