On 5/23/14, 11:28 AM, Mike Wilkes wrote:
> As far as a zombie window manager, I guess not:
>
> quaternion:xinit Mike$ ps ax | grep wm
>   1770 s000  S+     0:00.00 grep wm
>
> This is the directory structure you asked about:
>
> quaternion:~ Mike$ cd /opt/X11/lib/X11/xinit/
> quaternion:xinit Mike$ ls -al
> total 280
> drwxr-xr-x   9 root  wheel    306 May 22 05:59 .
> drwxr-xr-x  10 root  wheel    340 May 22 05:59 ..
> -rwxr-xr-x   1 root  wheel  58368 May 17 02:58 launchd_startx
> -rwxr-xr-x   1 root  wheel  69488 May 17 02:58 privileged_startx
> drwxr-xr-x   4 root  wheel    136 May 22 05:59 privileged_startx.d
> -rw-r--r--   1 root  wheel    959 May 17 02:34 xinitrc
> -rw-r--r--   1 root  wheel    956 Dec 22  2012 xinitrc.201212221105
> -rw-r--r--   1 root  wheel    956 Jan 31  2013 xinitrc.201301310810
> drwxr-xr-x   5 root  wheel    170 May 22 05:59 xinitrc.d
>
> It appears that xinitrc was not modified when I installed the new
> Xquartz on May 22, not sure what modified it on May 17.  Their
> permissions seem fine, I think.  This is xinitrc's contents:
>
> quaternion:xinit Mike$ more xinitrc
> #!/bin/sh
>
> userresources=$HOME/.Xresources
> usermodmap=$HOME/.Xmodmap
> sysresources=/opt/X11/lib/X11/xinit/.Xresources
> sysmodmap=/opt/X11/lib/X11/xinit/.Xmodmap
>
> # merge in defaults and keymaps
>
> if [ -f $sysresources ]; then
>
>      if [ -x /usr/bin/cpp ] ; then
>          xrdb -merge $sysresources
>      else
>          xrdb -nocpp -merge $sysresources
>      fi
>
>
>
> fi
>
> if [ -f $sysmodmap ]; then
>      xmodmap $sysmodmap
> fi
>
> if [ -f "$userresources" ]; then
>
>      if [ -x /usr/bin/cpp ] ; then
>          xrdb -merge "$userresources"
>      else
>          xrdb -nocpp -merge "$userresources"
>      fi
>
>
>
> fi
>
> if [ -f "$usermodmap" ]; then
>      xmodmap "$usermodmap"
> fi
>
> # start some nice programs
>
>
>
> if [ -d /opt/X11/lib/X11/xinit/xinitrc.d ] ; then
>          for f in /opt/X11/lib/X11/xinit/xinitrc.d/?*.sh ; do
>                  [ -x "$f" ] && . "$f"
>          done
>          unset f
> fi
>
> twm &
> xclock -geometry 50x50-1+1 &
> xterm -geometry 80x50+494+51 &
> xterm -geometry 80x20+494-0 &
> exec xterm -geometry 80x66+0+0 -name login
>
> quaternion:xinit Mike$
>
> It appears that the same day, May 7, that I moved .xinitrc out of the
> way, I also moved .Xresources. So I don't have either .Xresources or
> .Xmodmap in my home directory (I think I was having some kind of display
> problem that day, and it was fixed by moving .xinitrc and .Xresources
> out of the way). That's about it.  Thanks.
>
> -Mike
>
>
>

How about "ls -l /opt/X11/lib/X11/xinit/xinitrc.d" ?

I guess one thing to try would be a really simple $HOME/.xinitrc with 
something like

#!/bin/sh
exec xlogo &
exec quartz-wm

If that works then there's something amiss in your X11 system area.
-- 
Alexander Hansen, Ph.D.
Fink User Liaison
My package updates: http://finkakh.wordpress.com/

------------------------------------------------------------------------------
"Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE
Instantly run your Selenium tests across 300+ browser/OS combos.
Get unparalleled scalability from the best Selenium testing platform available
Simple to use. Nothing to install. Get started now for free."
http://p.sf.net/sfu/SauceLabs
_______________________________________________
Fink-beginners mailing list
Fink-beginners@lists.sourceforge.net
List archive:
http://news.gmane.org/gmane.os.apple.fink.beginners
Subscription management:
https://lists.sourceforge.net/lists/listinfo/fink-beginners

Reply via email to