#!/bin/sh
# The script to play beep sound and say current hour.
# It must be called through cron daemon.

SOUND='/usr/share/sounds/voiceman_clock.wav'

voiceman --stop
aplay "$SOUND" > /dev/null 2> /dev/null
voiceman --say "now $(date +%H) oh clock"
