From c3cad37b110f015a275b38af79a3a5bfe7bed639 Mon Sep 17 00:00:00 2001 From: bill-auger Date: Sat, 30 Jun 2018 06:16:32 -0400 Subject: add braille and screen reader support from talkingparabola config --- configs/profile/root-image/usr/bin/talk-to-me | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 configs/profile/root-image/usr/bin/talk-to-me (limited to 'configs/profile/root-image/usr/bin/talk-to-me') diff --git a/configs/profile/root-image/usr/bin/talk-to-me b/configs/profile/root-image/usr/bin/talk-to-me new file mode 100755 index 0000000..118b013 --- /dev/null +++ b/configs/profile/root-image/usr/bin/talk-to-me @@ -0,0 +1,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 -- cgit v1.2.2