Awesome: Unshift modkey+arrows for master and col control

master
Pierre Neidhardt 2015-11-01 22:12:03 +01:00
parent 0c99ce0dc0
commit 7a76498562
1 changed files with 4 additions and 4 deletions

View File

@ -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),