aboutsummaryrefslogtreecommitdiffstats
path: root/ssl
blob: 21f438bf12a12fa78af0925ce43d1054ab2435f7 (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 -s "$TMPDIR"/"$file"
optipng "$TMPDIR"/"$file"

mv "$TMPDIR"/"$file" "$HOME"/dumpdir/"$file"