1
0
Fork 0

Echo the screenshot path to stderr too

This commit is contained in:
Jeremy Kaplan 2019-04-23 12:08:39 -07:00 committed by Jeremy Kaplan
commit b60d18b214

View file

@ -16,6 +16,7 @@ screenshot() {
local ts="$(timestamp)" local ts="$(timestamp)"
local f="${HOME}/images/screenshots/${ts}.png" local f="${HOME}/images/screenshots/${ts}.png"
import "$@" "$f" import "$@" "$f"
echo "$f" >&2
echo "$f" echo "$f"
} }