update scr script
authorMart Lubbers <mart@martlubbers.net>
Mon, 20 Jun 2016 14:30:48 +0000 (16:30 +0200)
committerMart Lubbers <mart@martlubbers.net>
Mon, 20 Jun 2016 14:30:48 +0000 (16:30 +0200)
x/.local/bin/scr

index 184b5d8..dfe5edd 100755 (executable)
@@ -1,9 +1,6 @@
-#!/bin/bash
-set -e
-[[ "$#" -eq 1 ]] && CROP="$(slop -t 0 f '-crop %g')"
-URL="$(date +%F_%H-%M-%S).png"
-import -window root $CROP -quality 90 png:- | curl -s\
-       -u "ftp@martlubbers.net:$(pass ftp.martlubbers.net/ftp@martlubbers.net)"\
-       -T- "ftp://martlubbers.net/public_html/scr/$URL"
-echo "https://martlubbers.net/scr/$URL" |\
-       xclip -f -sel c | xclip -f | xargs -I{} notify-send {}
+#!/bin/sh -e
+[ "$#" -eq 1 ] && CROP="$(slop -t 0 -f "-crop %g")"
+URL="scr/$(date +%F_%H-%M-%S).png"
+import -window root $CROP png:- | \
+       ssh ygdrassil ssh martlubbers.net "cat \> public_html/$URL"
+echo "https://martlubbers.net/$URL" | xclip -f | xargs -I{} notify-send {}