2016-09-08 08:32:53 +02:00
|
|
|
--DOC_HIDE_ALL
|
|
|
|
local parent = ...
|
|
|
|
local wibox = require( "wibox" )
|
|
|
|
local beautiful = require( "beautiful" )
|
|
|
|
|
|
|
|
local l = wibox.layout.fixed.horizontal()
|
|
|
|
parent:add(l)
|
|
|
|
|
|
|
|
for _, v in ipairs {0,1,3,5} do
|
|
|
|
l:add(wibox.widget {
|
2016-12-27 21:39:08 +01:00
|
|
|
data_list = {
|
|
|
|
{ 'L1', 100 },
|
|
|
|
{ 'L2', 200 },
|
|
|
|
{ 'L3', 300 },
|
|
|
|
},
|
|
|
|
border_width = v,
|
|
|
|
forced_height = 50,
|
|
|
|
forced_width = 100,
|
|
|
|
colors = {
|
|
|
|
beautiful.bg_normal,
|
|
|
|
beautiful.bg_highlight,
|
|
|
|
beautiful.border_color,
|
|
|
|
},
|
|
|
|
widget = wibox.widget.piechart
|
|
|
|
})
|
2016-09-08 08:32:53 +02:00
|
|
|
end
|