From e116e0249db4585f9db52135bdb4360fe59dc1ff Mon Sep 17 00:00:00 2001 From: Mutzi Date: Tue, 25 Mar 2025 12:55:32 +0100 Subject: [PATCH] Removed delay after applying machi layout --- lib/layout-machi/editor.lua | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/lib/layout-machi/editor.lua b/lib/layout-machi/editor.lua index 8dc1fac..64b431b 100644 --- a/lib/layout-machi/editor.lua +++ b/lib/layout-machi/editor.lua @@ -541,15 +541,8 @@ function module.create(data) if to_apply then layout.machi_set_cmd(get_final_cmd(), tag) awful.layout.arrange(screen) - gears.timer{ - timeout = 1, - autostart = true, - singleshot = true, - callback = cleanup, - } - else - cleanup() end + cleanup() end end)