Skip to content

Commit

Permalink
Avoid sending two notifications with savecopy + rename buffer to clip…
Browse files Browse the repository at this point in the history
…board
  • Loading branch information
rhysperry111 authored and OctopusET committed Jul 23, 2024
1 parent cd2cc4c commit 2d6e5a9
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions grimshot
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2d6e5a9

Please sign in to comment.