From f5174c10de3f3fe72baca85c5d5a5182cc017dfc Mon Sep 17 00:00:00 2001 From: Tony Date: Thu, 15 Dec 2011 13:17:24 -0500 Subject: [PATCH] Show/hide wibox with modkey + b --- rc.lua | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/rc.lua b/rc.lua index 8b5da84..94c4559 100755 --- a/rc.lua +++ b/rc.lua @@ -430,6 +430,10 @@ globalkeys = awful.util.table.join( awful.key({ modkey, }, "space", function () awful.layout.inc(layouts, 1) end), awful.key({ modkey, "Shift" }, "space", function () awful.layout.inc(layouts, -1) end), + awful.key({ modkey }, "b", function () + wibox[mouse.screen].visible = not wibox[mouse.screen].visible + end), + -- Prompt awful.key({ modkey }, "r", function () promptbox[mouse.screen]:run() end),