1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
|
comment -*- mode: text; tab-width:2; indent-tabs-mode:nil -*-
Support brltty with the use of brlapi
* Tested environment
Arch Linux
* Build
$ ./configure --enable-brlapi
$ make
$ sudo make install
$ mlterm -v
mlterm version x.x.x
Features: ... brlapi
* Start
<brltty with xw driver>
$ export BRLAPI_HOST=127.0.0.1:1
$ brltty -b xw -A auth=none,host=127.0.0.1:1
$ mlterm
<brltty with xw and espeak driver>
$ export BRLTTY_SPEECH_INPUT=/foo/bar/fifo
$ export BRLAPI_HOST=127.0.0.1:1
$ sudo mkdir /var/run/brltty
$ brltty -b xw -s es -A auth=none,host=127.0.0.1:1 -i /foo/bar/fifo
$ mlterm
<brltty with tty>
$ sudo brltty -b tt -d `tty`
$ mlterm
* Note
o If BRLTTY_SPEECH_INPUT environmental variable is not set, mlterm doesn't
output anything to speech synthesizer.
o mlterm-fb, mlterm-con or mlterm-wl works with brltty as with mlterm.
o Permission of mlterm binary is installed with "-m 4755 -o root" option.
|