#!/bin/sh # This script is licensed under GPL -v3 o Higher. # Some i18n values export TEXTDOMAIN="lliurex-jclic-shared" MSG_INFO=$(gettext "LliureX JClic shared, is a little app to manage shared JClic's libraries and activities into the classroom. To share these, the only thing you must do is paste the libraries and activities you want, into the folder that will be shown after this message.\n\n This folder contains all jclic and libraries shared at classroom server, to share another Jclic library or activity, please paste it on this folder (create a separate folder for each library is a good idea).\n\nAll shared activities and libraries are under /net/share/jclic-shared folder at Places->Computer->File system.\n\nTo use it you can find it at http://server/ on firefox (JClic activities)\n\n Enjoy it!") # Path to Jclic Shared PATH_TO_JCLIC="/net/share/jclic-aula/" [ -d "$PATH_TO_JCLIC" ] || exit 1 # Main zenity --info --text="$MSG_INFO" nautilus "$PATH_TO_JCLIC" exit 0