2007-06-20 15:42:21 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2007-05-15 11:50:21 +02:00
|
|
|
export SUGAR_PREFIX=@prefix@
|
2007-05-01 16:42:43 +02:00
|
|
|
export SUGAR_PATH=@prefix@/share/sugar
|
2007-05-11 16:55:43 +02:00
|
|
|
export GTK2_RC_FILES=@prefix@/share/sugar/data/sugar-xo.gtkrc
|
2007-08-27 18:25:45 +02:00
|
|
|
if [ -f /etc/olpc-security ] ; then
|
2007-09-13 22:38:15 +02:00
|
|
|
exec dbus-launch --exit-with-session --config-file=/etc/dbus-1/session-olpc.conf sugar-shell
|
2007-08-27 18:25:45 +02:00
|
|
|
else
|
2007-09-13 22:38:15 +02:00
|
|
|
exec dbus-launch --exit-with-session sugar-shell
|
2007-08-27 18:25:45 +02:00
|
|
|
fi
|