#!/bin/sh
# Speak from outside Emacs
#Usage emsay <text> 
l="$@"
pidof -q `which emacs` &&\
 emacsclient -n -e "(dtk-speak \"$l\")"
