69 lines
1.9 KiB
Lua
69 lines
1.9 KiB
Lua
--DOC_HIDE_ALL
|
|
local parent = ...
|
|
local wibox = require( "wibox" )
|
|
local beautiful = require( "beautiful" )
|
|
|
|
parent:add(wibox.widget {
|
|
{
|
|
{
|
|
markup = "<b>display_labels</b> = <i>false</i>",
|
|
widget = wibox.widget.textbox
|
|
},
|
|
{
|
|
{
|
|
data = {
|
|
['L1'] = 100,
|
|
['L2'] = 200,
|
|
['L3'] = 300,
|
|
},
|
|
border_width = 1,
|
|
forced_height = 50,
|
|
forced_width = 100,
|
|
display_labels = false,
|
|
colors = {
|
|
beautiful.bg_normal,
|
|
beautiful.bg_highlight,
|
|
beautiful.border_color,
|
|
},
|
|
widget = wibox.widget.piechart
|
|
},
|
|
margins = 1,
|
|
color = beautiful.border_color,
|
|
layout = wibox.container.margin,
|
|
},
|
|
layout = wibox.layout.fixed.vertical
|
|
},
|
|
{
|
|
{
|
|
markup = "<b>display_labels</b> = <i>true</i>",
|
|
widget = wibox.widget.textbox
|
|
},
|
|
{
|
|
{
|
|
data = {
|
|
['L1'] = 100,
|
|
['L2'] = 200,
|
|
['L3'] = 300,
|
|
},
|
|
border_width = 1,
|
|
forced_height = 50,
|
|
forced_width = 100,
|
|
display_labels = true,
|
|
colors = {
|
|
beautiful.bg_normal,
|
|
beautiful.bg_highlight,
|
|
beautiful.border_color,
|
|
},
|
|
widget = wibox.widget.piechart
|
|
},
|
|
margins = 1,
|
|
color = beautiful.border_color,
|
|
layout = wibox.container.margin,
|
|
},
|
|
layout = wibox.layout.fixed.vertical
|
|
},
|
|
layout = wibox.layout.flex.horizontal
|
|
})
|
|
|
|
return 500, 60
|