Centered and autosize tasklist icons

master
Mark 2022-04-24 13:38:27 -07:00
parent 0ac767d534
commit adef24f08e
Signed by: Mark
GPG Key ID: AD62BB059C2AAEE4
2 changed files with 8 additions and 6 deletions

View File

@ -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

View File

@ -58,9 +58,14 @@ tasklist.make = function(screen)
{
{
{
id = "clienticon",
widget = awful.widget.clienticon,
forced_width = conf.clienticon_width
widget = wibox.container.place,
halign = "center",
valign = "bottom",
fill_vertical = true,
{
id = "clienticon",
widget = awful.widget.clienticon,
},
},
margins = beautiful.dpi(3),
widget = wibox.container.margin