From 8da8fd76ca4c5b30ec83d5ad6658a3ccda8e0c9a Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Thu, 6 Nov 2008 17:44:01 +0000 Subject: [PATCH] specify geometries on the test clients so they don't end up with their title bars under the panel svn path=/trunk/; revision=34 --- scripts/start-in-Xephyr | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/scripts/start-in-Xephyr b/scripts/start-in-Xephyr index 88c79a3b1..4b5ad28ec 100755 --- a/scripts/start-in-Xephyr +++ b/scripts/start-in-Xephyr @@ -46,10 +46,11 @@ try: # Wait for server to get going: LAME time.sleep(1) - # Start xterm to have some window in our session - subprocess.Popen(["xterm"]) - subprocess.Popen(["xlogo"]) - subprocess.Popen(["xeyes"]) + # Start some windows in our session. Specify explicit geometries + # so we don't end up with the title bars underneath the panel + subprocess.Popen(["xterm", "-geometry", "+30+30"]) + subprocess.Popen(["xlogo", "-geometry", "-0-0"]) + subprocess.Popen(["xeyes", "-geometry", "-0+30"]) # Now launch metacity-clutter with our plugin shell = launcher.start_shell()