awesome/tests/examples/wibox/widget/defaults/progressbar.lua

13 lines
211 B
Lua
Raw Normal View History

local parent = ... --DOC_HIDE
local wibox = require("wibox") --DOC_HIDE
parent:add( --DOC_HIDE
wibox.widget {
max_value = 1,
value = 0.33,
widget = wibox.widget.progressbar
}
) --DOC_HIDE