#!/bin/sh

L_CMD=lightwatch.pl

if pgrep -u ${USER} ${L_CMD}; then

  pkill ${L_CMD}

else

  ${L_CMD} &

fi

