summaryrefslogtreecommitdiff
path: root/configs/profile/root-image/usr/bin/talk-to-me
blob: 118b01315e7cc8c34d219dd4dbe6d69425d8a2cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh

# Initialize the Speakup screenreader
# This script is released under the GNU General Public License.

started_flag=/run/speech-is-running

if [[ ! -f $started_flag ]]; then
   systemctl stop espeakup

   sleep 5
   pick-a-card

   systemctl start espeakup
   touch $started_flag
fi