#!/bin/bash

ps ax | grep -q '[x]compmgr[^-]'
if [ "$?" == "1" ]
then
	# xcompmgr is not running.
	exit 0
fi

killall xcompmgr

