console none start on started hildon-desktop exec /usr/bin/python /opt/espeakcaller/espeakcaller-boot.py
#!/usr/bin/env python # autostart espeakcaller-daemon on boot daemonFile = '/opt/espeakcaller/espeakcaller-daemon.py' pidFile = '/tmp/espeakcaller_pid.txt' proc = subprocess.Popen("python2.5 " + daemonFile + " &", shell=True) pdFile = open(pidFile, 'w+') pdFile.write(str(proc.pid + 1)) pdFile.close()