#!/bin/sh

source ~/.profile
pidof mpl-srv >/dev/null 2>&1
if [ $? -eq 0 ]
then
	mpl-cl quit
else	
	mpl-srv
fi
