summaryrefslogtreecommitdiff
path: root/layouts.lua
blob: 67fd31d49b861c993168988fcd0030af29c06308 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
local awful = require("awful")

-- Table of layouts to cover with awful.layout.inc, order matters.
awful.layout.layouts = {
	awful.layout.suit.tile,
	awful.layout.suit.tile.bottom,
	awful.layout.suit.max,
	awful.layout.suit.floating,


--	awful.layout.suit.floating,
--	awful.layout.suit.tile,
--	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,
--	awful.layout.suit.max,
--	awful.layout.suit.max.fullscreen,
--	awful.layout.suit.magnifier,
--	awful.layout.suit.corner.nw,
--	awful.layout.suit.corner.ne,
--	awful.layout.suit.corner.sw,
--	awful.layout.suit.corner.se,
}