diff options
Diffstat (limited to 'config/hypr/lua/keybind_helpers.lua')
| -rw-r--r-- | config/hypr/lua/keybind_helpers.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/config/hypr/lua/keybind_helpers.lua b/config/hypr/lua/keybind_helpers.lua index 1b1a269b..b7f80127 100644 --- a/config/hypr/lua/keybind_helpers.lua +++ b/config/hypr/lua/keybind_helpers.lua @@ -206,9 +206,12 @@ local function dispatch(name, args) if name == "moveoutofgroup" and window_api.move then return window_api.move({ out_of_group = true }) end - if name == "layoutmsg" and dsp and dsp.layout then + 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 == "bringactivetotop" and window_api.bring_to_top then return window_api.bring_to_top() end |
