diff options
| author | Blista Kanjo | 2021-10-11 03:30:47 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2021-10-11 03:30:47 -0400 |
| commit | cd2f586c5c30e8a30a45193e4711bae4865432b9 (patch) | |
| tree | 0c3fb558283b5d3ce7886c2c7f4bae548e667b7a | |
| parent | dff56b6ed08a3930c62741ffcf673787e5c94ec7 (diff) | |
slight changes with keybinds for master clients
| -rw-r--r-- | awesome/rc.lua | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 9940dae..4e0945b 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -309,13 +309,13 @@ globalkeys = gears.table.join( {description = "decrease master height factor", group = "layout"}), - awful.key({ "Control", }, "Up", function () awful.tag.incnmaster( 1, nil, true) end, + awful.key({ "Control", }, "Left", function () awful.tag.incnmaster( 1, nil, true) end, {description = "increase the number of master clients", group = "layout"}), - awful.key({ "Control", }, "Down", function () awful.tag.incnmaster(-1, nil, true) end, + awful.key({ "Control", }, "Right", function () awful.tag.incnmaster(-1, nil, true) end, {description = "decrease the number of master clients", group = "layout"}), - awful.key({ "Control", }, "Right", function () awful.tag.incncol( 1, nil, true) end, + awful.key({ "Control", }, "Up", function () awful.tag.incncol( 1, nil, true) end, {description = "increase the number of columns", group = "layout"}), - awful.key({"Control", }, "Left", function () awful.tag.incncol(-1, nil, true) end, + awful.key({"Control", }, "Down", 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"}), |
