Adding imagemagick, adding script to take webcam photo and upload to website. Adding vimperatorrc

This commit is contained in:
Dustin Swan
2014-02-19 10:57:07 -06:00
parent 7fb0086e02
commit 8518041bc1
5 changed files with 13 additions and 0 deletions

7
bin/start_website_photos Executable file
View File

@@ -0,0 +1,7 @@
#!/bin/bash
while [ 1 ];
do
imagesnap - | convert - -resize "50%" jpeg:- | ssh dustinswan@dustinswan.org "cat > /srv/http/dustinswan.org/dustin.jpg"
sleep 10;
done