On 09 Jul 2003 22:40:58 -0400, parv wrote:
> 
> in message <[EMAIL PROTECTED]>, wrote Eduardo
> Alvarez thusly...
> >
> > I put a picture on the root window via the following:
> > 
> > xv -rmode 5 -quit -root ~/bgrounds/hchaos.png
> > 
> > I also start a transparent aterm via .xinitrc
> > 
> > now, the problem is that the transparent aterm doesn't acquire the
> > root image on startup.
> 
> In ~/.xinitrc, try sleeping for a while before starting aterm...
> 
>   xv -quit -root <image> && sleep 2
>   aterm

The idea is ok, but the example lines are incorrect.
As it is written (running xv in foreground) it wastes 2 sec for nothing.
This would be more correct:

  (xv -quit -root <image> && aterm) &

Or:

  xv -quit -root <image> &
  (sleep 3 && aterm) &

Regards,
Mikhael.
--
Visit the official FVWM web page at <URL: http://www.fvwm.org/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to [EMAIL PROTECTED]
To report problems, send mail to [EMAIL PROTECTED]

Reply via email to