I've slightly modified the official Imgur uploading script to allow for it to be bound to a key, however when I actually press the key, it seems to just run the two notify-send commands and end the script. It works if I execute through terminal or through ALT+F2, but not through the keypress no matter what I use.

The script is as follows:

#!/bin/bash
sleep 0.5;
notify-send "Imgur Uploader";

function uploadImage {
    curl -s -F "image=@$1" -F "key=486690f872c678126a2c09a9e196ce1b" http://imgur.com/api/upload.xml | grep -E -o "<original_image>(.)*</original_image>" | grep -E -o "http://i.stack.imgur.com/[^<]*";
}

scrot -s "shot.png";
image=`uploadImage "shot.png"`;
echo $image | xclip -selection c;
rm "shot.png";

notify-send "Done!" "$image";

Like I said, the script works when called manually, but I can't get it running bound to a keypress. I've tried screenshot, /usr/bin/screenshot, sh screenshot and sh /usr/bin/screenshot among others. Am I missing something major here?

link|improve this question
I'm having the same exact issue, and the only awnser below doesn't do anything. – Yab Aug 19 '11 at 16:18
feedback

1 Answer

up vote 1 down vote accepted

Most likely, the script is running with its current directory set to /usr/bin.

Try adding the following to the beginning of the script:

cd /tmp
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.