Add selection subject option to grimshot

This enables selecting a window, output, or area within one invocation.
- Drag for an area
- Click on a window to select it
- Click outside of all windows (e.g. in gaps or on the statusbar) to
select the output
This commit is contained in:
Ragnar Groot Koerkamp 2021-05-20 13:37:26 +02:00
parent 8f036b6f78
commit 49545189ac
3 changed files with 22 additions and 2 deletions

View file

@ -32,7 +32,7 @@ FILE=${3:-$(getTargetDirectory)/$(date -Ins).png}
if [ "$ACTION" != "save" ] && [ "$ACTION" != "copy" ] && [ "$ACTION" != "check" ]; then
echo "Usage:"
echo " grimshot [--notify] (copy|save) [active|screen|output|area|window] [FILE|-]"
echo " grimshot [--notify] (copy|save) [active|screen|output|area|window|selection] [FILE|-]"
echo " grimshot check"
echo " grimshot usage"
echo ""
@ -48,6 +48,7 @@ if [ "$ACTION" != "save" ] && [ "$ACTION" != "copy" ] && [ "$ACTION" != "check"
echo " output: Currently active output."
echo " area: Manually select a region."
echo " window: Manually select a window."
echo " selection: Manually select an area, window, or output."
exit
fi
@ -135,6 +136,13 @@ elif [ "$SUBJECT" = "window" ] ; then
exit 1
fi
WHAT="Window"
elif [ "$SUBJECT" = "selection" ] ; then
GEOM=$(swaymsg -t get_tree | jq -r '.. | select((.pid? and .visible?) or (.type == "output" and .active)) | .rect | "\(.x),\(.y) \(.width)x\(.height)"' | slurp)
# Check if user exited slurp without selecting the area
if [ -z "$GEOM" ]; then
exit
fi
WHAT="Selection"
else
die "Unknown subject to take a screen shot from" "$SUBJECT"
fi