diff options
| author | Don Williams <don.e.williams@gmal.com> | 2026-07-11 12:13:58 -0400 |
|---|---|---|
| committer | Pinapelz <yukais@pinapelz.com> | 2026-08-29 21:40:34 -0700 |
| commit | cbecfc1b7cb34580b2634e439ffd8169546bb893 (patch) | |
| tree | b06ab554af64b8d800527da2a4e4052fecb033f3 /config/hypr/lua/keybinds.lua | |
| parent | 1a2bb29ade16622a7c0d76a817300ff966d47a79 (diff) | |
Adding qs-hyprview blur to keyubinding for persistence
Signed-off-by: Don Williams <don.e.williams@gmal.com>
Removed layer rules
On branch development
Your branch is up to date with 'origin/development'.
Changes to be committed:
modified: config/hypr/configs/Keybinds.conf
modified: config/hypr/configs/LayerRules.conf
modified: config/hypr/lua/keybinds.lua
modified: config/quickshell/qs-hyprview/modules/Hyprview.qml
Diffstat (limited to 'config/hypr/lua/keybinds.lua')
| -rw-r--r-- | config/hypr/lua/keybinds.lua | 13 |
1 files changed, 5 insertions, 8 deletions
diff --git a/config/hypr/lua/keybinds.lua b/config/hypr/lua/keybinds.lua index 697801ff..600a1a75 100644 --- a/config/hypr/lua/keybinds.lua +++ b/config/hypr/lua/keybinds.lua @@ -330,16 +330,13 @@ local qs_hyprview_layout = "smartgrid" bind( "CTRL", "tab", - exec_cmd("qs ipc -c qs-hyprview call expose toggle " .. qs_hyprview_layout), + exec_cmd( + "hyprctl keyword layerrule \"match:namespace quickshell:expose, blur on, ignore_alpha 0\" && " + .. "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 |
