forked from michael/leanshot
15 lines
256 B
Bash
Executable file
15 lines
256 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
outdir=$HOME/Pictures/Screenshots
|
|
mkdir -p "${outdir}"
|
|
|
|
file=$(mktemp --suffix .png)
|
|
trap "rm \"${file}\"" EXIT
|
|
|
|
leanshot -o "${file}" $@
|
|
|
|
out="${outdir}/$(sha1sum "${file}" | cut -d ' ' -f 1).png"
|
|
cp "${file}" "${out}"
|
|
echo "${out}"
|