summaryrefslogtreecommitdiff
path: root/awesome/widgets/classiclayouts.lua
blob: 917ca00f0473926310011da0c32847b8765583c2 (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")

local layoutbox = {}

local layout_icons = {
	cornernw = "",
	cornerne = "",
	cornersw = "",
	cornerse = "",
	fairh = "",
	fairv = "",
	max = "[M]",
	floating  = "><>",
	magnifier = "[M]",
	fullscreen = "",
	spiral = "",
	dwindle = "",
	tile = "[]=",
	tiletop  = "TTT",
	tilebottom  = "TTT",
	tileleft  = "=[]",
}

function(s)
	s = screen[s or 1]

end