diff options
| author | Blista Kanjo | 2021-10-23 14:39:41 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2021-10-23 14:39:51 -0400 |
| commit | de3d1bfc5432469049d6c66fd2d29acc61ba9de5 (patch) | |
| tree | c6624c6dd3d505ec1d0e147fa755cfb405adc8e1 /awesome/rc.lua | |
| parent | fdbfdc2c9f4bda153306498e85b187fa3da41572 (diff) | |
using more layouts and changed keybind for switching between them
Diffstat (limited to 'awesome/rc.lua')
| -rw-r--r-- | awesome/rc.lua | 6 |
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 }, ",", |
