mutter/src/run-metacity.sh

35 lines
613 B
Bash
Raw Normal View History

2001-05-30 23:30:58 -04:00
#! /bin/bash
2001-07-04 00:33:31 -04:00
2001-06-03 01:39:43 -04:00
if test -z "$SCREENS"; then
2001-06-30 19:17:52 -04:00
SCREENS=1
2001-06-03 01:39:43 -04:00
fi
2001-06-03 14:33:59 -04:00
if test "$DEBUG" = none; then
DEBUG=
elif test -z "$DEBUG"; then
2001-07-02 21:45:43 -04:00
DEBUG=
2001-06-03 14:33:59 -04:00
fi
2001-06-10 23:24:20 -04:00
if test -z "$CLIENTS"; then
CLIENTS=0
fi
2001-06-11 01:47:51 -04:00
if test -z "$ONLY_WM"; then
2001-07-12 01:53:56 -04:00
Xnest -ac :1 -scrns $SCREENS -geometry 640x480 -bw 15 &
2001-07-05 01:22:00 -04:00
usleep 500000
2001-06-10 23:24:20 -04:00
2001-06-11 01:47:51 -04:00
if test $CLIENTS != 0; then
for I in `seq 1 $CLIENTS`; do
DISPLAY=:1 xterm -geometry 25x15 &
done
fi
2001-06-11 02:39:12 -04:00
2001-07-02 21:45:43 -04:00
usleep 50000
2001-06-11 01:47:51 -04:00
DISPLAY=:1 xsetroot -solid royalblue3
2001-06-10 23:24:20 -04:00
fi
2001-06-11 01:47:51 -04:00
if test -z "$ONLY_SETUP"; then
2001-06-20 23:40:14 -04:00
METACITY_UISLAVE_DIR=./uislave METACITY_DISPLAY=:1 exec unst libtool --mode=execute $DEBUG ./metacity $OPTIONS
2001-06-11 01:47:51 -04:00
fi