#!/usr/bin/sh
case $LANG in
    hu*) STARTMSG="Indítás, kérlek várj türelemmel..."
    ;;
    *) STARTMSG="Starting... Please wait be patient..."
esac

[ -x /usr/bin/bubblemsg ]&& bubblemsg "GoogleChat_Desktop" "$STARTMSG"
CPATH=/etc/blackPanther-default-apps.conf
[ ! -f "$CPATH" ]&&exit
if [ -f "$CPATH" ];then
 . $CPATH
echo -e "$YEL Starting GoogleChat_Desktop on $(lsb_release -sir)...$DEF"
RPATH=/etc/blackPanther-release
B=/usr/bin/GoogleChat_Desktop
[ ! -f "$RPATH" ]&&exit 0
exec $B $@
exit 0
else
echo ""
exit 
fi
