#!/bin/bash export TEXTDOMAIN="tico" MSG_BAJAR=$(gettext "Tico will now be installed. Aprox. size 25MB") MSG_NO_INTERNET=$(gettext "No Internet Connection has been detected. Please, check it") MSG_COPIAR=$(gettext "Would you like to save a copy of Gallery Pictograms Aprox. size 368MB") MSG_GUARDAR=$(gettext "Choose a directory for saving the file copy") MSG_MINUTOS=$(gettext "This operation can take a few minutes. Please wait") MSG_DESCARGA_IMAGENES=$(gettext "Gallery of Pictograms is being downloaded") # Departamento de Informática e Ingeniería de Sistemas (DIIS) de la Universidad de Zaragoza # Paquete TICO en repositorio original 29-12-2011 # tico_1.0-01_i386.deb # Galeria de imágenes # http://www.proyectotico.es/wiki/dirPictogramas/TICO_Pictogramas_Color_ID_110902.zip #Comprobar conexión a internet e instalar if netcat -z google.com 80 then zenity --info --text="$MSG_BAJAR" apt-get update synaptic --hide-main-window --non-interactive --set-selections-file /usr/share/lliurex-zero-installers/zero-lliurex-tico-packages else zenity --error --text="$MSG_NO_INTERNET" exit 0 fi # Preguntar e instalar galería de imágenes if zenity --question --text="$MSG_COPIAR"; then RUTA=$(zenity --file-selection --directory --text="$MSG_GUARDAR" ) IMAGENES="ftp://arxiu.lliurex.net/pub/recursos/TICO_Pictogramas_Color_ID_110902.zip" GETTING="wget -O "$RUTA"/pictogramas.zip "$IMAGENES" 2>&1 | zenity --progress --pulsate --auto-close --auto-kill --text=\""$MSG_MINUTOS"\" --title="\"$MSG_DESCARGA_IMAGENES"\" --width=500" #su -c """$GETTING""" $SUDO_USER su $USERNAME -c """$GETTING""" fi zero-sqlmanager -s zero-lliurex-tico 1 exit 0