#!/bin/bash 

#get desktop folder
DESKTOP_FOLDER=$(xdg-user-dir DESKTOP)
echo 'desktop folder is' "$DESKTOP_FOLDER"

echo create desktop shotcut
		cat >  "$DESKTOP_FOLDER/tico.desktop" <<- EOM
		[Desktop Entry] 
		Version=1.0
		Name=TICO
		Comment=TICO è un gestore di Tabelle Interattive di comunicazione per le persone con gravi disturbi di espressione orale.
		Exec="$HOME/.araword/Arasuite/TICO/TicoInterpreter.sh"
		Icon=/usr/share/icons/Ufficiozero/tico.png
		Terminal=false
		Type=Application
		Categories=GNOME;GTK;Education;
		EOM
        chmod +x "$DESKTOP_FOLDER/tico.desktop"
