diff --git a/README.md b/README.md index f25c09c..f36bceb 100644 --- a/README.md +++ b/README.md @@ -65,3 +65,16 @@ within Cthulhu. So, you want to write a script for Cthulhu? The best thing to do is start by looking at other scripts under the src/cthulhu/scripts/ hierarchy of the source tree. Cthulhu also has an excellent plugin system, more documentation and examples coming soon. + +## Self-voicing + +Cthulhu offers a mechanism through which messages may be spoken directly by the screen reader. Usage is as follows: + +```bash +# Speak hello world. +echo "Hello world." | socat - UNIX-CLIENT:/tmp/cthulhu.sock +# Speak Hello world without interrupting the previous speech. +echo "Hello world." | socat - UNIX-CLIENT:/tmp/cthulhu.sock +# Make hello world persistant in Braille. +echo "Hello world.<#APPEND#>" | socat - UNIX-CLIENT:/tmp/cthulhu.sock +``` diff --git a/configure.ac b/configure.ac index f3c5ed7..ec1e69b 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -m4_define([cthulhu_version], [0.1]) +m4_define([cthulhu_version], [0.2]) m4_define(pygobject_required_version, 3.18) m4_define(atspi_required_version, 2.48)