#!/bin/bash
#---------------------------------------------
# Script to start GeoGebra
#---------------------------------------------

#---------------------------------------------
# Export name of this script

export GG_SCRIPTNAME=$(basename $0)

#---------------------------------------------
# Export path of system directory containing geogebra.conf

export GG_SYS_CONFIG_PATH='/etc/geogebra'

#---------------------------------------------
# Run

exec "/usr/share/geogebra/geogebra" "$@"
