20 lines
366 B
Lua
20 lines
366 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,
|
||
|
},
|
||
|
direction = "east",
|
||
|
widget = wibox.container.rotate
|
||
|
}
|