From 4a90dfa38fa834ccc9da1793dec41c2c139bd56b Mon Sep 17 00:00:00 2001 From: Storm Dragon Date: Mon, 21 Oct 2024 12:53:24 -0400 Subject: [PATCH] Updated README. Bumped version to 0.2. --- README.md | 13 +++++++++++++ configure.ac | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) 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)