ordellrb@lemmy.world to linuxmemes@lemmy.world · edit-26 months agoNot Total Recall (1990)lemmy.worldimagemessage-square62fedilinkarrow-up1811arrow-down110
arrow-up1801arrow-down1imageNot Total Recall (1990)lemmy.worldordellrb@lemmy.world to linuxmemes@lemmy.world · edit-26 months agomessage-square62fedilink
minus-squareMacN'Cheezus@lemmy.todaylinkfedilinkEnglisharrow-up4·edit-26 months agoIt appears to be as simple as tesseract <infile> <outfile>. Possibly could even pipe (or tee) the screenshot straight into that and save both an image and a text file in a single command line. So something like this should do the trick: gnome-screenshot -f - | tee /Microsoft/yourPrivacy/$(date +%s).png | tesseract - /Microsoft/yourPrivacy/$(date +%s).txt Skip the database, just use grep to search that directory if you need to find anything. Voilà, homemade Recall.
It appears to be as simple as
tesseract <infile> <outfile>
. Possibly could even pipe (or tee) the screenshot straight into that and save both an image and a text file in a single command line.So something like this should do the trick:
Skip the database, just use
grep
to search that directory if you need to find anything. Voilà, homemade Recall.