From f9fb13ed4007156d3f969d235dfe5cf4cfb25d1a Mon Sep 17 00:00:00 2001 From: Mark Date: Sun, 24 Apr 2022 13:40:49 -0700 Subject: [PATCH] Made tasklist colors reasonable --- desktop/widgets/tasklist.lua | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/desktop/widgets/tasklist.lua b/desktop/widgets/tasklist.lua index 31e62ee..4950243 100755 --- a/desktop/widgets/tasklist.lua +++ b/desktop/widgets/tasklist.lua @@ -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,