summaryrefslogtreecommitdiffstats
path: root/abs/mv-core/MythVantage-system/saytime.sh
blob: 39e35993b947ecba6d635d703a3434206208a34a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
cd /opt/saytime
if  [ ! -e /tmp/timelock ]
then
        touch /tmp/timelock
        ps -ef | grep osd_clock
        if [ $? = 0 ]
        then
                killall -9 osd_clock
        fi

        date +%r |osd_cat -c green  -f -adobe-courier-*-*-*-*-*-*-*-*-*-150-*-*  &
        rm /tmp/timelock
fi