#!/bin/sh
#	. Unticker
# This script stops the backgrouns "working..." process started by the
#	. Ticker
# command.
#
[ -n "$TICKPID" ] && { (
	kill -15 $TICKPID
	wait $TICKPID
	TICKPID=''
	)&
}
