commit 96102184ab96c522fe1f9175bc4d5ceb09aa1720
parent 711403015921a931d5a5f2b93f53bf52ff52f0e3
Author: Hugo Osvaldo Barrera <hugo@barrera.io>
Date: Thu, 8 Jul 2021 12:04:28 +0200
grimshot: Exit 1 on cancellation
Whenever the selection is cancelled by the user, exit 1, since not
screenshot has been taken.
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/contrib/grimshot b/contrib/grimshot
@@ -113,7 +113,7 @@ elif [ "$SUBJECT" = "area" ] ; then
GEOM=$(slurp -d)
# Check if user exited slurp without selecting the area
if [ -z "$GEOM" ]; then
- exit
+ exit 1
fi
WHAT="Area"
elif [ "$SUBJECT" = "active" ] ; then
@@ -132,7 +132,7 @@ elif [ "$SUBJECT" = "window" ] ; then
GEOM=$(swaymsg -t get_tree | jq -r '.. | select(.pid? and .visible?) | .rect | "\(.x),\(.y) \(.width)x\(.height)"' | slurp)
# Check if user exited slurp without selecting the area
if [ -z "$GEOM" ]; then
- exit
+ exit 1
fi
WHAT="Window"
else