diff options
Diffstat (limited to 'config/hypr/configs')
| -rw-r--r-- | config/hypr/configs/system_keybinds.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/config/hypr/configs/system_keybinds.lua b/config/hypr/configs/system_keybinds.lua index dd654ccd..3db2a6ac 100644 --- a/config/hypr/configs/system_keybinds.lua +++ b/config/hypr/configs/system_keybinds.lua @@ -216,6 +216,15 @@ local function dispatch(name, args) 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 |
