blob: a788d18a81f5a61d83c503a9077b20166c7f35ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#!/usr/bin/env bash
##
# Create a screenshot using scrot, optipng it, then dump it in ~/dumpdir for
# dumpwatch to upload it to the appropriate server.
#
# This script requires dumpwatch to already be running.
#
set -o errexit
if [[ -z "$TMPDIR" ]]; then
TMPDIR=/tmp
fi
file=$(mktemp -u XXXXXXXXXX.png)
scrot "$TMPDIR"/"$file"
optipng "$TMPDIR"/"$file"
mv "$TMPDIR"/"$file" "$HOME"/dumpdir/"$file"
|