[docker] highlight widget when the popup is shown

This commit is contained in:
streetturtle 2021-03-06 13:20:35 -05:00
parent 79490b3bdd
commit 36ff9d53b7
1 changed files with 6 additions and 1 deletions

View File

@ -50,7 +50,10 @@ local docker_widget = wibox.widget {
margins = 4,
layout = wibox.container.margin
},
layout = wibox.layout.fixed.horizontal,
shape = function(cr, width, height)
gears.shape.rounded_rect(cr, width, height, 4)
end,
widget = wibox.container.background,
set_icon = function(self, new_icon)
self:get_children_by_id("icon")[1].image = new_icon
end
@ -354,8 +357,10 @@ local function worker(user_args)
gears.table.join(
awful.button({}, 1, function()
if popup.visible then
docker_widget:set_bg('#00000000')
popup.visible = not popup.visible
else
docker_widget:set_bg(beautiful.bg_focus)
spawn.easy_async(string.format(LIST_CONTAINERS_CMD, number_of_containers),
function(stdout, stderr)
rebuild_widget(stdout, stderr)