diff options
author | bill-auger <mr.j.spam.me@gmail.com> | 2018-06-30 06:16:32 -0400 |
---|---|---|
committer | bill-auger <mr.j.spam.me@gmail.com> | 2020-03-27 19:32:36 -0400 |
commit | e4fd6acd2d59cd10450fc57cf89e2dcc3c1e9c87 (patch) | |
tree | d1b591ffe11af67c0f615c6d384b8257c9a0c7fb /configs/profile/root-image/usr/bin/talk-to-me | |
parent | 860685fa072be6b6f1efa2fccb4f6376ef7f8bce (diff) |
add braille and screen reader support from talkingparabola config
Diffstat (limited to 'configs/profile/root-image/usr/bin/talk-to-me')
-rwxr-xr-x | configs/profile/root-image/usr/bin/talk-to-me | 16 |
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 |