summaryrefslogtreecommitdiff
path: root/src/run-metacity.sh
blob: cef1d71921f2d84e79694659e2c5ba1ef864e0a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#! /bin/bash
if test -z "$SCREENS"; then
  SCREENS=2
fi

if test "$DEBUG" = none; then
  DEBUG=
elif test -z "$DEBUG"; then
  DEBUG=gdb
fi

if test -z "$CLIENTS"; then
  CLIENTS=0
fi

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
  fi
 
  usleep 5000

  DISPLAY=:1 xsetroot -solid royalblue3
fi

if test -z "$ONLY_SETUP"; then
  METACITY_UISLAVE_DIR=./uislave DISPLAY=:1 exec unst libtool --mode=execute $DEBUG ./metacity
fi