Skip to content

Instantly share code, notes, and snippets.

@mikeri
Last active June 27, 2021 21:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikeri/21d0970b84675dbc042d71f39499ed44 to your computer and use it in GitHub Desktop.
Save mikeri/21d0970b84675dbc042d71f39499ed44 to your computer and use it in GitHub Desktop.
Mark an area of the screen, convert it to text and put the text in clipboard
#!/bin/bash
sleep .1
scrot --select /tmp/ocr.png
tesseract -c page_separator="" /tmp/ocr.png /tmp/ocr-out
xclip -selection clipboard -i < /tmp/ocr-out.txt
rm /tmp/ocr.png
rm /tmp/ocr-out.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment