From 2570646b62eb991df46907a5f1d62f24784bac9d Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Fri, 3 Jul 2026 10:22:12 +0200 Subject: [PATCH] fix: save only screenshot bind fixed --- config/hypr/hyprland/binds/screenshot.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/hypr/hyprland/binds/screenshot.lua b/config/hypr/hyprland/binds/screenshot.lua index 36491eb..872e658 100644 --- a/config/hypr/hyprland/binds/screenshot.lua +++ b/config/hypr/hyprland/binds/screenshot.lua @@ -14,7 +14,7 @@ hl.define_submap("screenshot", function() end) hl.bind("s", function() - hl.dispatch(hl.dsp.exec_cmd("dms screenshot --no-copy")) + hl.dispatch(hl.dsp.exec_cmd("dms screenshot --no-clipboard")) exit_submap() end) @@ -29,7 +29,7 @@ hl.define_submap("screenshot", function() end) hl.bind("SHIFT + s", function() - hl.dispatch(hl.dsp.exec_cmd("dms screenshot full --no-copy")) + hl.dispatch(hl.dsp.exec_cmd("dms screenshot full --no-clipboard")) exit_submap() end)