From de4fea23a6c945010287fee202a7215dd2f61c47 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Thu, 02 Aug 2012 18:27:31 +0000 Subject: Add RUN_IN_WINDOW option --- (limited to 'scripts') diff --git a/scripts/shell/start-sugar b/scripts/shell/start-sugar index 2c8c186..701645b 100755 --- a/scripts/shell/start-sugar +++ b/scripts/shell/start-sugar @@ -9,4 +9,24 @@ if [ -f $rootdir/config ]; then source $rootdir/config fi -xinit $scriptsdir/xinitrc -- $display +if [ ! -z $SUGAR_PROFILE ]; then + grep -q PROFILE $ROOT_DIR/config + if [ $? -eq 1 ]; then + randomstring=`> $ROOT_DIR/config + fi +fi + +if [ -z $RUN_IN_WINDOW ]; then + xinit $scriptsdir/xinitrc -- $display +else + xinit $scriptsdir/xinitrc -- /usr/bin/Xvnc $xvncdisplay -SecurityTypes None & + xvncpid=$! + + xport=`echo $display | cut -c2-` + xvncport=$(($xport + 5800)) + echo $xvncport + vncviewer localhost:$xvncport + + kill $xvncpid +fi -- cgit v0.9.1