#!/bin/sh

PORT="9999" #TODO: config

if (( $# == 0 )); then
	echo "usage: $0 \"Text to tell (TTS)\""
else
	echo "$*" | ncat localhost $PORT &
fi
