Programs started by a window manager usually inherit their standard
output and standard error from the window manager. If you're using
xdm, you can start blackbox in your ~/.xsession file using:
#!/bin/sh
# This redirects the standard output and standard error from
# ~/.xsession (and all programs it starts) to a file called
# '.xsession-log' in your home directory.
exec >~/.xsession-log 2>&1
# Start whatever clients you wish here in the background ...
# Then, for the last thing:
exec blackbox
Unfortunately, my knowledge of CDE is limited to being able to spell it.
--
jim knoble | [EMAIL PROTECTED] | http://www.jmknoble.cx/
Circa 2000-Aug-09 12:47:16 -0400 dixit hal king:
: Where does Blackbox send it's error messages when started from CDE or xdm?
: I'm having trouble with some menu items. I add them to the menu, they show
: up in the menu, but they don't execute. The paths are right. They work fine
: from a term prompt. Other items work. Other new items work. Just not some
: of them. My menu:
[...]
: What am I doing wrong?