mirror of
https://github.com/lcpz/awesome-copycats.git
synced 2026-03-23 22:15:11 +00:00
Fix useless gaps shortcut not working
This commit is contained in:
parent
5f550dc33f
commit
5806dbdbb1
|
|
@ -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
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue