# !/bin/bash

if [ "$(pidof compiz.real)" ] 
then
	metacity --replace
else
	compiz --replace
fi

exit 0

