diff options
Diffstat (limited to 'awesome')
| -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 }, ",", |
