From: martin f. krafft Date: Tue, 11 Sep 2018 07:12:43 +0000 (+0200) Subject: new layouts X-Git-Url: https://git.madduck.net/etc/awesome.git/commitdiff_plain/720ad852befbe0f98289fba926a1b073bbe05a55?ds=sidebyside new layouts --- 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, } -- }}}