[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[mgp-users 00925] Re: Problems embedding apps in presentations



Hello Chris,

what is the advantage of this solution over using mgp with the "-o"
option and move the mgp window on a different virtual desktop?

Christoph Dalitz

On Thu, 6 Jun 2002 08:55:33 -0400
Chris Tyler <chris@global.proximity.on.ca> wrote:
>
> Here is another solution to starting mgp without a window manager: I use a 
> script named "xmgp" which starts X and then fires up the presentation on 
> that display:
> 
>     #!/bin/bash
>     #
>     # xmgp :: start mgp on its own display
>     #
>        DISPLAY=":1" export DISPLAY
>     X $DISPLAY 2>/dev/null &
>     sleep 2	# give X a head-start
>     mgp $*
>     killall X		# terminate X when mgp exits