19 lines
429 B
Lua
19 lines
429 B
Lua
|
local parent = ... --DOC_NO_USAGE --DOC_HIDE
|
||
|
local wibox = require("wibox") --DOC_HIDE
|
||
|
|
||
|
parent:add( --DOC_HIDE
|
||
|
|
||
|
wibox.widget {
|
||
|
{
|
||
|
max_value = 1,
|
||
|
value = 0.33,
|
||
|
widget = wibox.widget.progressbar,
|
||
|
},
|
||
|
forced_height = 100,
|
||
|
forced_width = 20,
|
||
|
direction = "east",
|
||
|
layout = wibox.container.rotate,
|
||
|
}
|
||
|
|
||
|
) --DOC_HIDE
|