diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-09-10 14:15:10 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-09-10 14:15:10 +0200 |
commit | e76752cb838b6a9b6e33afa70b99e22912bcb5e7 (patch) | |
tree | f3d21acc5de2ac45d08d90bcfc778053d6d053a8 /ssl | |
parent | 037e4f926438a0f66f5e30a7bffe2a0bd8787f9c (diff) | |
download | bin-e76752cb838b6a9b6e33afa70b99e22912bcb5e7.tar.xz |
(s)sl: Let dumpwatch take care of uploading
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'ssl')
-rwxr-xr-x | ssl | 22 |
1 files changed, 14 insertions, 8 deletions
@@ -1,14 +1,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 -id=$(mktemp /tmp/XXXXXXXXXX).png -host='theos.kyriasis.com' -url="https://$host/~kyrias/s/$(basename $id)" +if [[ -z "$TMPDIR" ]]; then + TMPDIR=/tmp +fi + +file=$(mktemp -u XXXXXXXXXX.png) -scrot -s "$id" -scp -q "$id" "$host":public_html/s/ -rm "$id" +scrot -s "$TMPDIR"/"$file" -printf "URL: %s\n" "$url" -printf "%s\n" "$url" | xclip -selection clipboard +mv "$TMPDIR"/"$file" "$HOME"/dumpdir/"$file" |