#!/bin/sh
# $Revision: 1.2 $
# Luis Mondesi < lemsx1@gmail.com >
#
# DESCRIPTION: checks to see if Splashy is running and exits
# USAGE: $0
# LICENSE: GPL

if pidof splashy > /dev/null; then
    exit 0
fi

