#!/bin/bash

ETCDIR=/usr/local/minerva/etc

LIFE="Life status."

#
# misc
#
DAY=`date +%u`
if [ -f $ETCDIR/daily/$DAY/status ]; then
   TODAY=`. $ETCDIR/daily/$DAY/status`
fi

if [ "$TODAY" == "" ]; then
   TODAY="There are no events today"
fi

echo $LIFE $TODAY

