From 720ad852befbe0f98289fba926a1b073bbe05a55 Mon Sep 17 00:00:00 2001 From: "martin f. krafft" Date: Tue, 11 Sep 2018 09:12:43 +0200 Subject: [PATCH] new layouts --- .config/awesome/rc.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index eaa6451..1d382ad 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -77,7 +77,9 @@ cmdkey = "Mod3" -- Table of layouts to cover with awful.layout.inc, order matters. local layouts = { default = awful.layout.suit.fair, + default_horiz = awful.layout.suit.fair.horizontal, tiled = awful.layout.suit.tile, + tiled_horiz = awful.layout.suit.tile.top, floating = awful.layout.suit.floating, maximised = awful.layout.suit.max } @@ -86,6 +88,8 @@ awful.layout.layouts = { layouts.tiled, layouts.maximised, layouts.floating, + layouts.default_horiz, + layouts.tiled_horiz, } -- }}} -- 2.39.2