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?
