summaryrefslogtreecommitdiff
path: root/configs/profile/root-image/usr/bin/talk-to-me
diff options
context:
space:
mode:
authorbill-auger <mr.j.spam.me@gmail.com>2018-06-30 06:16:32 -0400
committerbill-auger <mr.j.spam.me@gmail.com>2019-05-07 09:23:27 -0400
commitc3cad37b110f015a275b38af79a3a5bfe7bed639 (patch)
treecb86249ea0977a4fc99484ea79c974d10216d7d4 /configs/profile/root-image/usr/bin/talk-to-me
parentcc333958668e319ac145f7d0b2d78122d4df8d21 (diff)
add braille and screen reader support from talkingparabola config
Diffstat (limited to 'configs/profile/root-image/usr/bin/talk-to-me')
-rwxr-xr-xconfigs/profile/root-image/usr/bin/talk-to-me16
1 files changed, 16 insertions, 0 deletions
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