bling/layout/init.lua

27 lines
703 B
Lua
Raw Normal View History

2020-10-19 17:25:05 +02:00
local beautiful = require("beautiful")
2020-10-29 21:22:37 +01:00
local mstab = require(... .. ".mstab")
2020-10-19 17:25:05 +02:00
beautiful.layout_mstab = mstab.get_icon()
2020-10-29 21:22:37 +01:00
local vertical = require(... .. ".vertical")
2020-10-19 17:25:05 +02:00
beautiful.layout_vertical = vertical.get_icon()
2020-10-29 21:22:37 +01:00
local horizontal = require(... .. ".horizontal")
2020-10-19 17:25:05 +02:00
beautiful.layout_horizontal = horizontal.get_icon()
2020-10-29 21:22:37 +01:00
local centered = require(... .. ".centered")
2020-10-19 17:25:05 +02:00
beautiful.layout_centered = centered.get_icon()
local equalarea = require(... .. ".equalarea")
2021-03-03 12:24:56 +01:00
beautiful.layout_equalarea = equalarea.get_icon()
2020-10-19 17:25:05 +02:00
local layout = {
mstab = mstab.layout,
centered = centered.layout,
vertical = vertical.layout,
horizontal = horizontal.layout,
equalarea = equalarea.layout
2020-10-19 17:25:05 +02:00
}
return layout