From: Samir Benmendil Date: Sat, 15 Jun 2013 19:27:05 +0000 (+0200) Subject: compelety hide conky when it's not toggled X-Git-Url: https://git.rmz.io/dotfiles.git/commitdiff_plain/7f00f634ced039c57536088b9d1f5f968f9f9d26 compelety hide conky when it's not toggled --- diff --git a/awesome/conky.lua b/awesome/conky.lua index fa1c3f5..0f9eca9 100644 --- a/awesome/conky.lua +++ b/awesome/conky.lua @@ -21,6 +21,7 @@ local function raise_conky() if conky then conky.ontop = true + conky.hidden = false end end @@ -29,6 +30,7 @@ local function lower_conky() if conky then conky.ontop = false + conky.hidden = true end end @@ -50,6 +52,7 @@ utils.rules.append({ properties = { floating = true, sticky = true, ontop = false, + hidden = true, focusable = true, size_hints = {"program_position", "program_size"} } },