I wasn't able to run X11 or Terminal after rebooting my Mac. After digging around, I got them to work when I commented-out this line in my .cshrc:

xset b off

It appears that xset will attempt to launch X11 if it isn't running already, and since X11 will launch the default shell through xterm and thus encounter the xset line above, we will have an infinite loop.

I would like to keep the above line in my .cshrc. Is there a way to prevent X11 from launching itself?

link|improve this question
feedback

1 Answer

up vote 2 down vote accepted

Commands used during the initialization of the X server should be placed in ~/.xinitrc. You may want to copy (or source) the default found at /etc/X11/xinit/xinitrc as a starting point.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.