#!/bin/sh -e

#remove conf dir/files

CONF_DIR="/home/user/.proximityclock/"

if [ -e $CONF_DIR ];
then
	rm $CONF_DIR.bg $CONF_DIR.fg $CONF_DIR.timeout
	rmdir $CONF_DIR
fi

exit 0
