Fix wibars_toggle

This commit is contained in:
Manuel Hurtado 2020-05-17 06:40:31 -04:00 committed by GitHub
parent 06458c76a2
commit 091fca6804
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -540,7 +540,7 @@ keys.globalkeys = gears.table.join(
awful.key({ superkey }, "grave", function() sidebar.visible = not sidebar.visible end,
{description = "show or hide sidebar", group = "awesome"}),
-- Toggle wibar(s)
awful.key({ superkey, shiftkey }, "b", wibars_toggle,
awful.key({ superkey, shiftkey }, "b", function() wibars_toggle() end,
{description = "show or hide wibar(s)", group = "awesome"}),
-- Emacs (O for org mode)
awful.key({ superkey }, "o", apps.org,