> New problem I'm having with Xdarwin. Each time I click on the app now I'm > having it quit on me. Running it from the command line gives me this > output: > > Operating System: Darwin > Using keymapping provided in /System/Library/Keyboards/USA.keymapping. > _XSERVTransmkdir: Owner of /tmp/.X11-unix should be set to root > 2002-04-15 12:55:23.907 XDarwin[421] X client process terminated with status > 1. > Display mode: Rootless Quartz > Screen 0 added: 1024x747 @ (0,21) > Screen 0 placed at X11 coordinate (0,0). > 2002-04-15 12:55:28.910 XDarwin[421] X server thread never quit. > > So simple enough, somehow the server never quit, yet how do I get it to and > restart it? Is there a file I can delete (like eggdrop), that tells the > program it's still in use?
The "never quit" message doesn't mean that the previous XDarwin didn't quit, it just means the current XDarwin didn't quit cleanly. There's no fatal error message here. It's more likely that you have a .xinitrc script that is completing prematurely. When .xinitrc finishes executing, the X server is shutdown (this is a 'feature'). If your .xinitrc runs everything in the background, the script will finish immediately and XDarwin will quit. You should make sure that the last command run by .xinitrc runs in the foreground (i.e. does not have '&' at the end). Then XDarwin will keep running until the program run by that command quits. -- Greg Parker [EMAIL PROTECTED] _______________________________________________ Fink-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/fink-users
