#!/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