From 96d53593faa67c6ee97463b8b2c0a31820d63b4d Mon Sep 17 00:00:00 2001 From: Jonathan Hodgson Date: Mon, 1 Jun 2020 19:55:54 +0100 Subject: [PATCH] Adds note about dependencies --- bin/.bin/screenshot | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bin/.bin/screenshot b/bin/.bin/screenshot index c6bb8193..72d21d7c 100755 --- a/bin/.bin/screenshot +++ b/bin/.bin/screenshot @@ -7,6 +7,9 @@ # Will create notification containing file path # # If you have a project specified, it will put the sceenshot in that folder instead of /tmp +# +# Relies on maim for taking screenshot +# If you give it the -o flag for ocr, it needs tesseract path='/tmp' command -v maim > /dev/null && screenshooter="maim" || ( echo -n "You need to install maim\nhttps://github.com/naelstrof/maim" && exit 1 )