aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlista Kanjo2021-10-23 14:39:41 -0400
committerBlista Kanjo2021-10-23 14:39:51 -0400
commitde3d1bfc5432469049d6c66fd2d29acc61ba9de5 (patch)
treec6624c6dd3d505ec1d0e147fa755cfb405adc8e1
parentfdbfdc2c9f4bda153306498e85b187fa3da41572 (diff)
using more layouts and changed keybind for switching between them
-rw-r--r--awesome/rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index f061029..5f6ffeb 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -42,10 +42,10 @@ awful.layout.layouts = {
awful.layout.suit.tile,
awful.layout.suit.floating,
awful.layout.suit.max,
+ awful.layout.suit.fair,
-- awful.layout.suit.tile.left,
-- awful.layout.suit.tile.bottom,
-- awful.layout.suit.tile.top,
--- awful.layout.suit.fair,
-- awful.layout.suit.fair.horizontal,
-- awful.layout.suit.spiral,
-- awful.layout.suit.spiral.dwindle,
@@ -343,9 +343,9 @@ globalkeys = gears.table.join(
{description = "increase the number of columns", group = "layout"}),
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,
+ awful.key({ modkey }, "j", function () awful.layout.inc( 1) end,
{description = "select next", group = "layout"}),
- awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(-1) end,
+ awful.key({ modkey }, "k", function () awful.layout.inc(-1) end,
{description = "select previous", group = "layout"}),
awful.key({ modkey }, ",",