diff options
Diffstat (limited to 'awesome')
-rw-r--r-- | awesome/rc.lua | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 70141cf..a5605d1 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -643,7 +643,16 @@ globalkeys = gears.table.join( function () awful.tag.incncol(-1, nil, true) end, - {description = "decrease the number of columns", group = "layout"}) + {description = "decrease the number of columns", group = "layout"}), + --]] + + ---[[ Hides the statusbar + awful.key({ modkey, "Shift" }, "b", + function () + myscreen = awful.screen.focused() + myscreen.mywibox.visible = not myscreen.mywibox.visible + end, + { description = "toggle statusbar", group = "awesome" }) --]] --[[ Changes the layout used |