mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 09:46:08 -05:00
16 lines
325 B
Bash
Executable File
16 lines
325 B
Bash
Executable File
#! /bin/bash
|
|
if test -z "$SCREENS"; then
|
|
SCREENS=2
|
|
fi
|
|
|
|
if test "$DEBUG" = none; then
|
|
DEBUG=
|
|
elif test -z "$DEBUG"; then
|
|
DEBUG=gdb
|
|
fi
|
|
|
|
Xnest :1 -scrns $SCREENS -geometry 270x270 &
|
|
DISPLAY=:1 xsetroot -solid royalblue3
|
|
METACITY_UISLAVE_DIR=./uislave DISPLAY=:1 unst libtool --mode=execute $DEBUG ./metacity
|
|
killall Xnest
|