Centered and autosize tasklist icons
parent
0ac767d534
commit
adef24f08e
|
@ -42,9 +42,6 @@ conf.wallpaper = {
|
|||
conf.battery_enabled = false
|
||||
conf.backlight_enabled = false
|
||||
|
||||
-- Fixed width of all clienticons in tasklist
|
||||
conf.clienticon_width = 50
|
||||
|
||||
-- The position of the bar on each screen
|
||||
conf.bar_position = "bottom"
|
||||
-- Bar size in dpi
|
||||
|
|
|
@ -57,10 +57,15 @@ tasklist.make = function(screen)
|
|||
},
|
||||
{
|
||||
{
|
||||
{
|
||||
widget = wibox.container.place,
|
||||
halign = "center",
|
||||
valign = "bottom",
|
||||
fill_vertical = true,
|
||||
{
|
||||
id = "clienticon",
|
||||
widget = awful.widget.clienticon,
|
||||
forced_width = conf.clienticon_width
|
||||
},
|
||||
},
|
||||
margins = beautiful.dpi(3),
|
||||
widget = wibox.container.margin
|
||||
|
|
Loading…
Reference in New Issue