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