From 9d4649249b6e56da56a0f1a93476f066416ec248 Mon Sep 17 00:00:00 2001 From: Rhys Perry Date: Tue, 23 Jul 2024 05:10:03 +0100 Subject: [PATCH] Avoid sending two notifications with savecopy + rename buffer to clipboard --- grimshot | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/grimshot b/grimshot index 87c7fc3..5aaf479 100755 --- a/grimshot +++ b/grimshot @@ -183,17 +183,17 @@ fi if [ "$ACTION" = "copy" ] ; then takeScreenshot - "$GEOM" "$OUTPUT" | wl-copy --type image/png || die "Clipboard error" - notifyOk "$WHAT copied to buffer" + notifyOk "$WHAT copied to clipboard" else if takeScreenshot "$FILE" "$GEOM" "$OUTPUT"; then TITLE="Screenshot of $SUBJECT" MESSAGE=$(basename "$FILE") - notifyOk "$MESSAGE" "$TITLE" - echo "$FILE" if [ "$ACTION" = "savecopy" ]; then wl-copy --type image/png < "$FILE" || die "Clipboard error" - notifyOk "$WHAT copied to buffer" + MESSAGE="$MESSAGE and clipboard" fi + notifyOk "$MESSAGE" "$TITLE" + echo "$FILE" else notifyError "Error taking screenshot with grim" fi