From 12c6f2952ed366ab43f3a7c3bd8fc59a18407b93 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sun, 16 Aug 2026 10:43:39 -0400 Subject: Fixed toggleSplit layout in LUA workflow Signed-off-by: Don Williams Changes to be committed: modified: CHANGELOG.md modified: config/hypr/configs/system_keybinds.lua modified: config/hypr/lua/keybind_helpers.lua modified: config/hypr/lua/user_keybinds_helper.lua --- config/hypr/lua/user_keybinds_helper.lua | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'config/hypr/lua/user_keybinds_helper.lua') diff --git a/config/hypr/lua/user_keybinds_helper.lua b/config/hypr/lua/user_keybinds_helper.lua index aabb5f03..0cb786f2 100644 --- a/config/hypr/lua/user_keybinds_helper.lua +++ b/config/hypr/lua/user_keybinds_helper.lua @@ -207,6 +207,15 @@ local function dispatch(name, args) if name == "togglefloating" and window_api.float then return function() hl.dispatch(window_api.float({ action = "toggle" })) end end + if name == "pseudo" and window_api.pseudo then + return window_api.pseudo() + end + if (name == "layoutmsg" or name == "layout") and dsp and dsp.layout then + return dsp.layout(args) + end + if name == "togglesplit" and dsp and dsp.layout then + return dsp.layout("togglesplit") + end if name == "resizewindow" and window_api.resize then return window_api.resize() end -- cgit v1.2.3