Skip to content

Instantly share code, notes, and snippets.

@DNA
Created August 26, 2015 17:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DNA/7616b825261f97223953 to your computer and use it in GitHub Desktop.
Save DNA/7616b825261f97223953 to your computer and use it in GitHub Desktop.
take photo and screenshot every 5 minutes
#!/bin/bash
# 0/5 * * * * $HOME/Code/autophoto.sh >> /dev/null
if [ ! -d "$HOME/Pictures/AutoPhotos/screen/$(date +%Y%m%d)/" ]; then
mkdir -p "$HOME/Pictures/AutoPhotos/screen/$(date +%Y%m%d)/"
fi
if [ ! -d "$HOME/Pictures/AutoPhotos/picz/$(date +%Y%m%d)/" ]; then
mkdir -p "$HOME/Pictures/AutoPhotos/picz/$(date +%Y%m%d)/"
fi
/usr/sbin/screencapture -x -t jpg ~/Pictures/AutoPhotos/screen/$(date +%Y%m%d)/$(date +%H%M)s.jpg
/usr/bin/imagesnap -w 1.5 -q ~/Pictures/AutoPhotos/picz/$(date +%Y%m%d)/$(date +%H%M)p.jpg
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment