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