Made tasklist colors reasonable
parent
adef24f08e
commit
f9fb13ed40
|
@ -84,7 +84,7 @@ tasklist.make = function(screen)
|
|||
|
||||
-- Change background when mouse is over widget
|
||||
self:connect_signal("mouse::enter", function(result)
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA"
|
||||
--self:get_children_by_id("top_tab")[1].bg = "#2DA0DA"
|
||||
self:get_children_by_id("background")[1].bg = beautiful.color.bar.hover_bg
|
||||
|
||||
end)
|
||||
|
@ -95,9 +95,9 @@ tasklist.make = function(screen)
|
|||
if c == client.focus then
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0FF"
|
||||
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.bar.hover_bg --beautiful.color.transparent
|
||||
else
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA77"
|
||||
end
|
||||
end)
|
||||
end,
|
||||
|
@ -112,9 +112,9 @@ tasklist.make = function(screen)
|
|||
if c == client.focus then
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA"
|
||||
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.bar.hover_bg --beautiful.color.transparent
|
||||
else
|
||||
self:get_children_by_id("top_tab")[1].bg = "#2DA0DA77"
|
||||
end
|
||||
end,
|
||||
layout = wibox.layout.align.vertical,
|
||||
|
|
Loading…
Reference in New Issue