#!/bin/sh
# uwclock - Trivial wrapper for "wmfishtime"
# License:  BSD
# Revision: 070321

killany wmfishtime 2> /dev/null
ENABLE=yes

if [ "x$1" = x--disable ]; then ENABLE=no; fi
if [ "x$1" = x-disable  ]; then ENABLE=no; fi
if [ "x$1" = xdisable   ]; then ENABLE=no; fi

if [ "x$1" = x--remove  ]; then ENABLE=no; fi
if [ "x$1" = x-remove   ]; then ENABLE=no; fi
if [ "x$1" = xremove    ]; then ENABLE=no; fi

if [ $ENABLE = yes ]; then
    wmfishtime $* &
fi
