From cbecfc1b7cb34580b2634e439ffd8169546bb893 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Sat, 11 Jul 2026 12:13:58 -0400 Subject: Adding qs-hyprview blur to keyubinding for persistence Signed-off-by: Don Williams 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 --- config/hypr/configs/Keybinds.conf | 4 +--- config/hypr/configs/LayerRules.conf | 2 ++ config/hypr/lua/keybinds.lua | 13 +++++-------- 3 files changed, 8 insertions(+), 11 deletions(-) (limited to 'config/hypr') diff --git a/config/hypr/configs/Keybinds.conf b/config/hypr/configs/Keybinds.conf index 9d1514cd..fc13e1c7 100644 --- a/config/hypr/configs/Keybinds.conf +++ b/config/hypr/configs/Keybinds.conf @@ -141,9 +141,7 @@ bindd = $mainMod ALT, S, Toggle scrolling V/H, exec, bash -c '[[ $(hyprctl getop $layout = 'smartgrid' # Or, using XDG_CONFIG_HOME: -bind = ctrl, tab, exec, qs ipc -c qs-hyprview call expose toggle $layout -#bind = ctrl, tab, exec, qs ipc -c qs-hyprview call expose open $layout -#bind = ctrl, tab, exec, qs ipc -c qs-hyprview call expose close +bind = ctrl, tab, exec, hyprctl keyword layerrule "match:namespace quickshell:expose, blur on, ignore_alpha 0" && qs ipc -c qs-hyprview call expose toggle $layout # Cycle windows; if floating bring to top bindd = ALT, Tab, Cycle next window, cyclenext diff --git a/config/hypr/configs/LayerRules.conf b/config/hypr/configs/LayerRules.conf index a08d40b7..b5751644 100644 --- a/config/hypr/configs/LayerRules.conf +++ b/config/hypr/configs/LayerRules.conf @@ -13,6 +13,8 @@ layerrule = match:namespace notifications, blur on, ignore_alpha 0, animation sl layerrule = match:namespace quickshell:overview, blur on, ignore_alpha 0.5 layerrule = match:namespace quickshell:expose, dim_around on layerrule = match:namespace quickshell:expose, blur on, ignore_alpha 0 +# Compatibility fallback for Hyprland builds/parsers that still expect classic layerrule syntax +layerrule = dimaround, quickshell:expose layerrule = match:namespace wallpaper, blur on, ignore_alpha 0 # swaync + helper overlays 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 -- cgit v1.2.3