aboutsummaryrefslogtreecommitdiff
path: root/awesome/rc.lua
diff options
context:
space:
mode:
authorKyle Javier2021-09-29 13:15:34 -0400
committerKyle Javier2021-09-29 13:15:34 -0400
commit1edce7ef8c8621545bb8f6a41460b20ee514c22e (patch)
tree22170eebe4c4f6e24115b6aaaac4fa05f6bc828a /awesome/rc.lua
parentd1801d204e283a6ff829be5b3e92847c24050cf6 (diff)
changed some keybindings
Diffstat (limited to 'awesome/rc.lua')
-rw-r--r--awesome/rc.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 351c080..6f56f88 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -359,9 +359,9 @@ globalkeys = gears.table.join(
{description = "decrease master height factor", group = "layout"}),
- awful.key({ "Control", }, "Left", function () awful.tag.incnmaster( 1, nil, true) end,
+ awful.key({ "Control", }, "Right", function () awful.tag.incnmaster( 1, nil, true) end,
{description = "increase the number of master clients", group = "layout"}),
- awful.key({ "Control", }, "Right", function () awful.tag.incnmaster(-1, nil, true) end,
+ awful.key({ "Control", }, "Left", 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,
{description = "increase the number of columns", group = "layout"}),