awesome/tests/examples/wibox/container/defaults/place.lua

25 lines
485 B
Lua

--DOC_HIDE_ALL
local wibox = require("wibox")
return {
text = "Before",
align = "center",
valign = "center",
widget = wibox.widget.textbox,
},
{
{
{
text = "After",
align = "center",
valign = "center",
widget = wibox.widget.textbox,
},
valign = "bottom",
halign = "right",
widget = wibox.container.place
},
margins = 5,
layout = wibox.container.margin
}