From fcefc5d7ac5b63424f4dd0f7b795532b197083db Mon Sep 17 00:00:00 2001 From: James Reed Date: Fri, 5 Jul 2019 16:56:38 -0600 Subject: [PATCH] panel: Set skip_taskbar to true on panels --- panel.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/panel.lua b/panel.lua index a450b11..49458b5 100644 --- a/panel.lua +++ b/panel.lua @@ -18,6 +18,7 @@ local function spawn(cmd, args) c.hidden = true c.sticky = true c.floating = true + c.skip_taskbar = true awful.placement.scale(c, {to_percent=args.scale or 0.5}) awful.placement.centered(c) c:connect_signal("unfocus", function () c.hidden = true end)