aboutsummaryrefslogtreecommitdiff
path: root/config/ratpoison/imgur
diff options
context:
space:
mode:
Diffstat (limited to 'config/ratpoison/imgur')
-rwxr-xr-xconfig/ratpoison/imgur8
1 files changed, 8 insertions, 0 deletions
diff --git a/config/ratpoison/imgur b/config/ratpoison/imgur
new file mode 100755
index 0000000..59e4199
--- /dev/null
+++ b/config/ratpoison/imgur
@@ -0,0 +1,8 @@
+#!/bin/bash
+function uploadImage {
+ curl -s -F "image=@$1" -F "key=486690f872c678126a2c09a9e196ce1b" https://imgur.com/api/upload.xml | grep -E -o "<original_image>(.)*</original_image>" | grep -E -o "http://i.imgur.com/[^<]*"
+}
+
+scrot ~/Pictures/scrot.png
+uploadImage ~/Pictures/scrot.png | perl -pe chomp | xclip
+notify-send "Image uploaded, link in selection"