diff options
| author | Don Williams <Don.e.williams@gmail.com> | 2026-07-11 01:35:53 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:34 -0700 |
| commit | e44f3c46c8e3bf0ca74e780375599316fe5f2396 (patch) | |
| tree | 50a6a512e7b9fdafe53a48382bc0e4eabca68a5d /config/hypr/lua/keybinds.lua | |
| parent | 5c3d43b34594e2f7a6f4edd0640d2e44c51c8875 (diff) | |
Added qs-hyprview as alternative overview CTRL-TAB
Signed-off-by: Don Williams <Don.e.williams@gmail.com>
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/hypr/configs/Startup_Apps.conf
modified: config/hypr/lua/keybinds.lua
modified: config/hypr/lua/startup.lua
modified: config/hypr/scripts/OverviewToggle.sh
modified: config/hypr/scripts/Refresh.sh
modified: config/hypr/scripts/RefreshNoWaybar.sh
new file: config/quickshell/qs-hyprview
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 |
