#!/bin/sh

case "$1" in
resume)
	# Update the display
        pidof_xearth=`pidof xearth`
	[ -n "$pidof_xearth" ] && kill -CONT $pidof_xearth > /dev/null 2>&1
	exit 0
	;;
esac

