summaryrefslogtreecommitdiff
path: root/configs/talkingparabola/airootfs/usr/bin/talk-to-me
blob: 73998d84d58cfb8561763975fbb51fd103019d70 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh
started_flag=/run/speech-is-running
if [ -f $started_flag ]; then
	exit 0
fi
systemctl stop espeakup
sleep 5
pick-a-card
systemctl start espeakup
touch $started_flag