2016-12-06 20:34:14 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# launcher.sh
|
|
|
|
# navigate to home directory, then to this directory, then execute python script, then back home
|
|
|
|
|
|
|
|
cd /
|
2016-12-06 20:55:24 +00:00
|
|
|
cd home/pi/BoothPi
|
2016-12-06 20:34:14 +00:00
|
|
|
sudo python Photobooth.py
|
|
|
|
cd /
|