blob: b052033196e62f6e7154806c9c31e24d2221a89c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/usr/bin/env bash
##
# Create a screenshot using scrot, 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"
mv "$TMPDIR"/"$file" "$HOME"/dumpdir/"$file"
|