#!/bin/bash
# Julio, 2009 - Equipo de desarrollo de GALPon MiniNo - basado en el trabajo previo de Gabriel Rojas y Fernando Garcia Bermudez

# Determine the path to this application.
APPDIR=`dirname "$0"`
cd "$APPDIR"
APPDIR="`pwd`"


empty_icon="RUTA_A_ICONO_VACIO"
full_icon="RUTA_A_ICONO_LLENO"


if [ "$1" = "full" ];then

ln -sf "$full_icon" "$APPDIR/.DirIcon"
rox -x "$APPDIR"

else

ln -sf "$empty_icon" "$APPDIR/.DirIcon"
rox -x "$APPDIR"

fi

exit

