diff options
Diffstat (limited to 'config/hypr/lua/keybinds.lua')
| -rw-r--r-- | config/hypr/lua/keybinds.lua | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/config/hypr/lua/keybinds.lua b/config/hypr/lua/keybinds.lua index 3730e825..697801ff 100644 --- a/config/hypr/lua/keybinds.lua +++ b/config/hypr/lua/keybinds.lua @@ -325,6 +325,21 @@ bind( ), { description = "toggle scrolling V/H" } ) +-- Section: qs-hyprview expose controls +local qs_hyprview_layout = "smartgrid" +bind( + "CTRL", + "tab", + exec_cmd("qs ipc -c qs-hyprview call expose toggle " .. qs_hyprview_layout), + { description = "qs-hyprview toggle" } +) +bind( + "CTRL", + "tab", + exec_cmd("qs ipc -c qs-hyprview call expose open " .. qs_hyprview_layout), + { description = "qs-hyprview open" } +) +bind("CTRL", "tab", exec_cmd("qs ipc -c qs-hyprview call expose close"), { description = "qs-hyprview close" }) local col_width_presets = { 0.25, 0.33, 0.5, 0.66, 0.75, 1.0 } local function _as_number(v) if type(v) == "number" then |
