Skip to content

Instantly share code, notes, and snippets.

@aaronsnoswell
Created July 9, 2012 07:19
Show Gist options
  • Save aaronsnoswell/3074770 to your computer and use it in GitHub Desktop.
Save aaronsnoswell/3074770 to your computer and use it in GitHub Desktop.
Easy Linux Screen Capture
#!/bin/bash
while :
do
import -window root "png:/home/aaron/Pictures/screen_capture/`date +%Y_%m_%d-%H:%M:%S`.png"
echo "Saved `date +%Y_%m_%d-%H:%M:%S`.png";
sleep 30
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment