From 84d4a9262dafbd0dbba50f8149373f4b56a79401 Mon Sep 17 00:00:00 2001 From: Thomas Forgione Date: Mon, 19 Nov 2018 11:22:47 +0100 Subject: [PATCH] Tile left first --- awesome/rc.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index 660bfcb..13d6839 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -97,6 +97,10 @@ modkey = "Mod4" -- Table of layouts to cover with awful.layout.inc, order matters. awful.layout.layouts = { + awful.layout.suit.tile.left, + awful.layout.suit.tile, + awful.layout.suit.tile.bottom, + awful.layout.suit.tile.top, awful.layout.suit.fair, awful.layout.suit.fair.horizontal, awful.layout.suit.spiral, @@ -109,10 +113,6 @@ awful.layout.layouts = { -- awful.layout.suit.corner.sw, -- awful.layout.suit.corner.se, awful.layout.suit.floating, - awful.layout.suit.tile.left, - awful.layout.suit.tile, - awful.layout.suit.tile.bottom, - awful.layout.suit.tile.top, } -- }}}