aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xcontrib/grimshot8
1 files changed, 8 insertions, 0 deletions
diff --git a/contrib/grimshot b/contrib/grimshot
index 4ee8d902..461a5eef 100755
--- a/contrib/grimshot
+++ b/contrib/grimshot
@@ -111,6 +111,10 @@ if [ "$ACTION" = "check" ] ; then
111 exit 111 exit
112elif [ "$SUBJECT" = "area" ] ; then 112elif [ "$SUBJECT" = "area" ] ; then
113 GEOM=$(slurp -d) 113 GEOM=$(slurp -d)
114 # Check if user exited slurp without selecting the area
115 if [ -z "$GEOM" ]; then
116 exit
117 fi
114 WHAT="Area" 118 WHAT="Area"
115elif [ "$SUBJECT" = "active" ] ; then 119elif [ "$SUBJECT" = "active" ] ; then
116 FOCUSED=$(swaymsg -t get_tree | jq -r 'recurse(.nodes[]?, .floating_nodes[]?) | select(.focused)') 120 FOCUSED=$(swaymsg -t get_tree | jq -r 'recurse(.nodes[]?, .floating_nodes[]?) | select(.focused)')
@@ -126,6 +130,10 @@ elif [ "$SUBJECT" = "output" ] ; then
126 WHAT="$OUTPUT" 130 WHAT="$OUTPUT"
127elif [ "$SUBJECT" = "window" ] ; then 131elif [ "$SUBJECT" = "window" ] ; then
128 GEOM=$(swaymsg -t get_tree | jq -r '.. | select(.pid? and .visible?) | .rect | "\(.x),\(.y) \(.width)x\(.height)"' | slurp) 132 GEOM=$(swaymsg -t get_tree | jq -r '.. | select(.pid? and .visible?) | .rect | "\(.x),\(.y) \(.width)x\(.height)"' | slurp)
133 # Check if user exited slurp without selecting the area
134 if [ -z "$GEOM" ]; then
135 exit
136 fi
129 WHAT="Window" 137 WHAT="Window"
130else 138else
131 die "Unknown subject to take a screen shot from" "$SUBJECT" 139 die "Unknown subject to take a screen shot from" "$SUBJECT"