2018-07-24 14:12:44 +02:00
|
|
|
--DOC_GEN_IMAGE --DOC_HIDE
|
2016-07-25 04:06:11 +02:00
|
|
|
local parent = ... --DOC_NO_USAGE --DOC_HIDE
|
|
|
|
local wibox = require("wibox") --DOC_HIDE
|
|
|
|
|
|
|
|
parent:add( --DOC_HIDE
|
|
|
|
|
2017-01-28 01:28:46 +01:00
|
|
|
wibox.widget {
|
|
|
|
{
|
|
|
|
max_value = 1,
|
|
|
|
value = 0.33,
|
|
|
|
widget = wibox.widget.progressbar,
|
|
|
|
},
|
|
|
|
forced_height = 100,
|
|
|
|
forced_width = 20,
|
|
|
|
direction = "east",
|
|
|
|
layout = wibox.container.rotate,
|
|
|
|
}
|
2016-12-31 13:59:38 +01:00
|
|
|
|
2017-01-01 21:48:38 +01:00
|
|
|
) --DOC_HIDE
|
2016-12-31 13:59:38 +01:00
|
|
|
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|