summaryrefslogtreecommitdiff
path: root/home/wayland/pkgs/wayland-scripts/src/bin/freezshot
blob: a47e9c89233609ea2d2a9d46107794b6a523c0d1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!/usr/bin/env bash

tmp="${XDG_RUNTIME_DIR:-${TMPDIR:-/tmp}}"
tmp="$(mktemp -d "${tmp}/freezhot.XXXX")"
out="${GRIM_DEFAULT_DIR:-${XDG_PICTURES_DIR:-.}}"

wl_res()
{
	swaymsg -pt get_outputs | while read -r line; do
		case "$line" in
		"Current mode"*)
			line="${line#*Current mode: }"
			echo "${line%% *}"
			return
		esac
	done
}

########
# MAIN #
########

if [ ! -d "$out" ]; then
	mkdir -p "$out"
fi
GRIM_DEFAULT_DIR="$tmp" grim
trap 'rm -r "$tmp"' EXIT
imv -f "$tmp"/* &
view_pid=$!

region=$(slurp -f '%wx%h %x:%y') > /dev/null 2>&1
r=$?
kill $view_pid
if [ $r != 0 ]; then
	exit 1
fi

img="$(ls "$tmp")"
res="${region% *}"
if [ "$res" = "$(wl_res)" ]; then
	cp "$tmp/$img" "$out"
else
	width=${res%x*}
	hight="${res#*x}"
	position="${region#* }"
	ffmpeg \
		-loglevel quiet \
		-i "$tmp/$img" \
		-vf "crop=$width:$hight:$position" \
		"$out/$img"
fi