diff options
Diffstat (limited to 'src/run-metacity.sh')
-rwxr-xr-x | src/run-metacity.sh | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/src/run-metacity.sh b/src/run-metacity.sh index 9f150c4..abf28b3 100755 --- a/src/run-metacity.sh +++ b/src/run-metacity.sh @@ -13,15 +13,19 @@ if test -z "$CLIENTS"; then CLIENTS=0 fi -Xnest :1 -scrns $SCREENS -geometry 640x480 -bw 15 & -usleep 50000 +if test -z "$ONLY_WM"; then + Xnest :1 -scrns $SCREENS -geometry 640x480 -bw 15 & + usleep 50000 -if test $CLIENTS != 0; then - for I in `seq 1 $CLIENTS`; do - DISPLAY=:1 xterm -geometry 25x15 & - done + if test $CLIENTS != 0; then + for I in `seq 1 $CLIENTS`; do + DISPLAY=:1 xterm -geometry 25x15 & + done + fi + + DISPLAY=:1 xsetroot -solid royalblue3 fi -DISPLAY=:1 xsetroot -solid royalblue3 -METACITY_UISLAVE_DIR=./uislave DISPLAY=:1 unst libtool --mode=execute $DEBUG ./metacity -killall Xnest +if test -z "$ONLY_SETUP"; then + METACITY_UISLAVE_DIR=./uislave DISPLAY=:1 unst libtool --mode=execute $DEBUG ./metacity +fi |