Software Recommendation – How to Take a Screenshot Every N Seconds

screenshotsoftware-recommendation

What software can I use to take screenshots with a set interval? I'd like to take screenshots every 2 second or so. Command-line and GUI are both ok.

I'd prefer software that can also resize and compress each screenshot.

Best Answer

Install scrot and then run this:

while true; do scrot & sleep 2; done