#! /bin/sh

. $TS_GLOBAL
. /etc/xtdesk.functions
case "$1" in  
init)
    if ! pkg_initialized $PACKAGE; then
	pkg_set_init_flag $PACKAGE
	mkdir $HOME/.xtdesktop
	cp /etc/xtdesk.tpl $HOME/.xtdesktop/xtdeskrc
	xtdesk_icons
    fi
    ;;
  *)
    exit 1
    ;;
esac
exit 0
