*blog... kind of... *rss 



Time-lapse Desktop Screenshots (Linux)
If you ever need to take screenshots of your desktop every 10second (or whatever). Here it's a quick script:

while true ; 
do
scrot '%s.png' -e 'mv $f ~/Desktop/temp/scrot/'
sleep 10
done

Just paste the script on an empty file and change the properties to "Allow executing file as program". Double click and Run in Terminal. Control^C to stop it. That's it.
1 comment

how do i collect the pictures taken? if they are on the clipboard, gimp doesnt recognize them. and thank you for the script