From 5448f42a4157eaf60482f369f8c5fa0f46bdf668 Mon Sep 17 00:00:00 2001 From: OCbwoy3 Date: Sun, 30 Mar 2025 19:31:51 +0300 Subject: [PATCH] Update screenshot keybind --- config/hypr/config/keybindings/other.conf | 2 +- scripts/screenshot-fullscreen.sh | 2 +- scripts/screenshot-selection.sh | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/hypr/config/keybindings/other.conf b/config/hypr/config/keybindings/other.conf index 5f1181f..45b821e 100644 --- a/config/hypr/config/keybindings/other.conf +++ b/config/hypr/config/keybindings/other.conf @@ -14,7 +14,7 @@ bind = $mainMod SHIFT, B, exec, bash ~/config/scripts/hot-reload.sh # Screenshot keybinds bind = $mainMod, PRINT, exec, bash ~/config/scripts/screenshot-selection.sh bind = $mainMod SHIFT, PRINT, exec, bash ~/config/scripts/screenshot-fullscreen.sh -bind = ALT SHIFT, PRINT, exec, bash ~/config/scripts/edit-last-screenshot.sh +bind = $mainMod CTRL SHIFT, PRINT, exec, bash ~/config/scripts/edit-last-screenshot.sh # Music volume control diff --git a/scripts/screenshot-fullscreen.sh b/scripts/screenshot-fullscreen.sh index 0047717..f012e57 100755 --- a/scripts/screenshot-fullscreen.sh +++ b/scripts/screenshot-fullscreen.sh @@ -7,5 +7,5 @@ echo "$SS_PATH" if [[ -n "$SS_PATH" && "$SS_PATH" == /home/ocbwoy3/Pictures/Screenshots/* ]]; then wl-copy < "$SS_PATH" - notify-send "Screenshot" "Successfully captured screenshot to clipboard.\nOpen swappy with ALT+SHIFT+PS." + notify-send "Screenshot" "Successfully captured screenshot to clipboard.\nOpen swappy with SUPER+ALT+SHIFT+PS." fi diff --git a/scripts/screenshot-selection.sh b/scripts/screenshot-selection.sh index 7b53e6a..a3ae06b 100755 --- a/scripts/screenshot-selection.sh +++ b/scripts/screenshot-selection.sh @@ -7,5 +7,5 @@ echo "$SS_PATH" if [[ -n "$SS_PATH" && "$SS_PATH" == /home/ocbwoy3/Pictures/Screenshots/* ]]; then wl-copy < "$SS_PATH" - notify-send "Screenshot" "Successfully captured selection to clipboard.\nOpen swappy with ALT+SHIFT+PS." + notify-send "Screenshot" "Successfully captured selection to clipboard.\nOpen swappy with SUPER+ALT+SHIFT+PS." fi