Fixed clienticon width and added always-visible top bar
(makes sure all clients are visible, even those without an icon)
This commit is contained in:
@ -60,6 +60,7 @@ tasklist.make = function(screen)
|
||||
{
|
||||
id = "clienticon",
|
||||
widget = awful.widget.clienticon,
|
||||
forced_width = conf.clienticon_width
|
||||
},
|
||||
margins = beautiful.dpi(3),
|
||||
widget = wibox.container.margin
|
||||
@ -91,7 +92,7 @@ tasklist.make = function(screen)
|
||||
elseif c.minimized then
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA77"
|
||||
else
|
||||
self:get_children_by_id("top_tab")[1].bg = beautiful.color.transparent
|
||||
self:get_children_by_id("top_tab")[1].bg = beautiful.color.bar.hover_bg --beautiful.color.transparent
|
||||
end
|
||||
end)
|
||||
end,
|
||||
@ -108,7 +109,7 @@ tasklist.make = function(screen)
|
||||
elseif c.minimized then
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA77"
|
||||
else
|
||||
self:get_children_by_id("top_tab")[1].bg = beautiful.color.transparent
|
||||
self:get_children_by_id("top_tab")[1].bg = beautiful.color.bar.hover_bg --beautiful.color.transparent
|
||||
end
|
||||
end,
|
||||
layout = wibox.layout.align.vertical,
|
||||
|
Reference in New Issue
Block a user