2016-05-24 19:38:37 +02:00
|
|
|
--DOC_HIDE_ALL
|
2018-07-24 14:12:44 +02:00
|
|
|
--DOC_GEN_IMAGE
|
2016-05-24 19:38:37 +02:00
|
|
|
local wibox = require("wibox")
|
|
|
|
local gears = {shape = require("gears.shape")}
|
|
|
|
local beautiful = require("beautiful")
|
|
|
|
|
|
|
|
return {
|
|
|
|
text = "Before",
|
|
|
|
align = "center",
|
|
|
|
valign = "center",
|
|
|
|
widget = wibox.widget.textbox,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{
|
|
|
|
text = "After",
|
|
|
|
align = "center",
|
|
|
|
valign = "center",
|
|
|
|
widget = wibox.widget.textbox,
|
|
|
|
},
|
2019-04-05 22:52:01 +02:00
|
|
|
shape = gears.shape.circle,
|
|
|
|
border_width = 5,
|
|
|
|
border_color = "#ff0000",
|
|
|
|
bg = beautiful.bg_highlight,
|
|
|
|
widget = wibox.container.background
|
2016-05-24 19:38:37 +02:00
|
|
|
}
|
2016-12-31 13:59:38 +01:00
|
|
|
|
|
|
|
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|