Skip to content

Commit

Permalink
Show/hide wibox with modkey + b
Browse files Browse the repository at this point in the history
  • Loading branch information
tony committed Dec 15, 2011
1 parent 50868d7 commit f5174c1
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions rc.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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),

Expand Down

0 comments on commit f5174c1

Please sign in to comment.