From 5806dbdbb1722d05fdbc7701eb36751b37faf834 Mon Sep 17 00:00:00 2001 From: jimver Date: Sat, 1 Jun 2019 18:26:50 +0200 Subject: [PATCH] Fix useless gaps shortcut not working --- rc.lua.template | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rc.lua.template b/rc.lua.template index db10f14..6dbd631 100644 --- a/rc.lua.template +++ b/rc.lua.template @@ -353,9 +353,9 @@ globalkeys = my_table.join( {description = "toggle wibox", group = "awesome"}), -- 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"}), - 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"}), -- Dynamic tagging