File: README.brltty

package info (click to toggle)
mlterm 3.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 25,340 kB
  • sloc: ansic: 154,713; sh: 5,302; cpp: 2,953; objc: 2,776; java: 2,472; makefile: 2,445; perl: 1,674; xml: 44
file content (37 lines) | stat: -rw-r--r-- 970 bytes parent folder | download
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.