#!/bin/csh -f
#
#  This script is run after recording is completely finished.  The screen
#  blanker is turned back on, the deck is stopped, and a message is mailed
#  to notify the user that recording is finished.
#
#  Turn the screen saver back on.
#
xset s on
echo
echo
echo Done with animation
echo
echo
set vl_stat = `vfr_vlan_cmd ST`		#stop the transport
#
#  And notify me that the animation is done.
#
set junk = `date`
Mail -s "Desi recording" <<! $USER
Your animation finished recording on $junk.

!
