Mailing Lists: Apple Mailing Lists

Image of Mac OS face in stamp
 
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Something i've noticed



On 2007/02/18 03:58, David Robinson wrote:
> Hi
> 
> I've just noticed something, but am not sure if this has any bearing on
> the problem. At the top of the file there are calls to user resources
> and modmap. Yet when I do an ls -all in the $home directory these files
> seem to be missing. Would this have any bearing?

In a word, No.  In a few more words, that's what the 'if [ -f <whatever> ]'
constructs are all about.

Have you tried making the changes that I suggested?  In particular, the last
version of .xinitrc that you posted showed the last two lines to be:

	exec wmaker &
	exec xterm

This is guaranteed to do what you are seeing.  Why?  Because of what 'exec'
does.  In the above case, 'exec wmaker &' replaces xinit with wmaker, which is
run to completion in the background, then quits.  Since wmaker replaced xinit
(via the exec), the 'exec xterm' will ***never*** run. (Try 'man sh' and read
it all for better understanding.)

Please change these two lines to:

	xterm &
	exec wmaker

and tell us what happens.  Take careful note that there is only one '&' and
only one 'exec' in the above.

Mark
 _______________________________________________
Do not post admin requests to the list. They will be ignored.
X11-users mailing list      (email@hidden)
Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/x11-users/email@hidden

This email sent to email@hidden

References: 
 >Something i've noticed (From: David Robinson <email@hidden>)



Visit the Apple Store online or at retail locations.
1-800-MY-APPLE

Contact Apple | Terms of Use | Privacy Policy

Copyright © 2007 Apple Inc. All rights reserved.