1
0
Fork 0
mirror of https://github.com/lcpz/awesome-copycats.git synced 2026-03-23 14:05:11 +00:00

Fix useless gaps shortcut not working

This commit is contained in:
jimver 2019-06-01 18:26:50 +02:00
parent 5f550dc33f
commit 5806dbdbb1

View file

@ -353,9 +353,9 @@ globalkeys = my_table.join(
{description = "toggle wibox", group = "awesome"}), {description = "toggle wibox", group = "awesome"}),
-- On the fly useless gaps change -- On the fly useless gaps change
awful.key({ altkey, "Control" }, "+", function () lain.util.useless_gaps_resize(1) end, awful.key({ altkey, "Control" }, "+", function () beatiful.useless_gaps = beatiful.useless_gaps + 1 end,
{description = "increment useless gaps", group = "tag"}), {description = "increment useless gaps", group = "tag"}),
awful.key({ altkey, "Control" }, "-", function () lain.util.useless_gaps_resize(-1) end, awful.key({ altkey, "Control" }, "-", function () beatiful.useless_gaps = beatiful.useless_gaps - 1 end,
{description = "decrement useless gaps", group = "tag"}), {description = "decrement useless gaps", group = "tag"}),
-- Dynamic tagging -- Dynamic tagging