awesome/tests/examples/wibox/widget/piechart/border_width.lua

30 lines
752 B
Lua
Raw Normal View History

2016-09-08 08:32:53 +02:00
--DOC_HIDE_ALL
--DOC_GEN_IMAGE
2016-09-08 08:32:53 +02:00
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 {
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
--DOC_HIDE vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80