Skip to content

Instantly share code, notes, and snippets.

@ferki
Created March 25, 2015 06:07
Show Gist options
  • Save ferki/ba8fc352c47e3ab0f423 to your computer and use it in GitHub Desktop.
Save ferki/ba8fc352c47e3ab0f423 to your computer and use it in GitHub Desktop.
Copy text from screenshot to clipboard
#!/bin/sh
IMAGE="/tmp/scrocr.png"
scrot -s ${IMAGE}
mogrify -modulate 100,0 -resize 400% ${IMAGE}
tesseract ${IMAGE} stdout | xsel -bi
rm ${IMAGE}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment