vote up 0 vote down star

Hello!

Under Linux I've always looked for some great simple software to take screenshots of a region, then upload it and throw the remote URL of the image to my clipboard. I got that to work great with this script:

#!/bin/bash

FTPSERVER=ftp.example.com

USERNAME=user

PASSWORD=pass

dir=~/Photos/Screenshots

filename=Screenshot-$(date +%Y-%m-%d_%H%M%S)

url=http://example.com/screenshots/

scrot -q 1  "$dir/$filename.png"

ncftpput -u $USERNAME -p $PASSWORD $FTPSERVER /var/www/html/screenshots $dir/$filename.png

echo "$url$filename.png" | xclip -selection c

exit

It also worked when I bound a hotkey to trigger it. But now I'd love to be able to select the region to take a picture of, I figured that:

scrot -s

Does this. It worked fine to just append the -s parameter in the original file shown before, and then run the shell script from the terminal. But as soon as I made a hotkey to trigger this, it didn't allow me to select a region to capture, and this worked fine before when it just captured the entire screen.

Anyone know how I could get it to make me select the region, when I click my desired hotkey?

flag
When you say "appended" do you mean you added the "-s" to the line that has the "scrot" command, or something else? – Laurence Gonsalves Nov 7 at 20:37
Ye, that's what I meant. Sorry if it wasn't clear. – Sirupsen Nov 8 at 13:30

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.