aboutsummaryrefslogtreecommitdiff
path: root/awesome/rc.lua
diff options
context:
space:
mode:
authorKyle Javier2021-10-05 13:32:39 -0400
committerKyle Javier2021-10-05 13:32:39 -0400
commit9603df30182021c0ca2cfe1a4b8d3c5e57ce573c (patch)
treedd687ea76a6e4bc2aaa46bae5f5b252082eae782 /awesome/rc.lua
parentce5de14b3889b955f774cc055be9930913d08058 (diff)
modified master client count and columns keybinds
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r--awesome/rc.lua8
1 files changed, 4 insertions, 4 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 7151e06..a72304d 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -360,13 +360,13 @@ globalkeys = gears.table.join(
{description = "decrease master height factor", group = "layout"}),
- awful.key({ "Control", }, "Right", function () awful.tag.incnmaster( 1, nil, true) end,
+ awful.key({ "Control", }, "Up", function () awful.tag.incnmaster( 1, nil, true) end,
{description = "increase the number of master clients", group = "layout"}),
- awful.key({ "Control", }, "Left", function () awful.tag.incnmaster(-1, nil, true) end,
+ awful.key({ "Control", }, "Down", function () awful.tag.incnmaster(-1, nil, true) end,
{description = "decrease the number of master clients", group = "layout"}),
- awful.key({ "Control", }, "Up", function () awful.tag.incncol( 1, nil, true) end,
+ awful.key({ "Control", }, "Right", function () awful.tag.incncol( 1, nil, true) end,
{description = "increase the number of columns", group = "layout"}),
- awful.key({"Control", }, "Down", function () awful.tag.incncol(-1, nil, true) end,
+ awful.key({"Control", }, "Left", function () awful.tag.incncol(-1, nil, true) end,
{description = "decrease the number of columns", group = "layout"}),
awful.key({ modkey, }, "space", function () awful.layout.inc( 1) end,
{description = "select next", group = "layout"}),