#!/bin/sh /etc/rc.common
COMMAND=$1
START=98

start() {
	/usr/sbin/swatch $COMMAND >/dev/null 2>&1
}
stop() {
	killall swatch
}
