diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-26 20:55:12 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2015-04-26 20:55:12 +0200 |
commit | 6e069a03f5cc995d85f2293495c208a0994b0275 (patch) | |
tree | 39484060b48d7ba1ff9843ed2e00f6851130489d /ssl | |
parent | 3966da435243ecf05fe054c44db8cc3cb43d704a (diff) | |
download | bin-6e069a03f5cc995d85f2293495c208a0994b0275.tar.xz |
Add (s)sl
sl and ssl are scrot wrappers that scp the screenshots to theos and
returns an https URL
Diffstat (limited to 'ssl')
-rwxr-xr-x | ssl | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -0,0 +1,14 @@ +#!/usr/bin/env bash + +set -o errexit + +id=$(mktemp /tmp/XXXXXXXXXX).png +host='theos.kyriasis.com' +url="https://$host/~kyrias/s/$(basename $id)" + +scrot -s "$id" +scp -q "$id" "$host":public_html/s/ +rm "$id" + +printf "URL: %s\n" "$url" +printf "%s\n" "$url" | xclip -selection clipboard |