Quoting Jon Doe <linuxgeek@woh.rr.com>:
How do I get a program to autostart at login to blackbox?
Patch the .xinitrc file like this: --- .xinitrc Thu Jan 24 15:55:03 2002 +++ .xinitrc~ Thu Jan 24 15:36:45 2002 @@ -74,8 +74,7 @@ # start some stuff # -WM=${WINDOWMANAGER##/*/} -test -r $HOME/.xinitrc-$WM && source $HOME/.xinitrc-$WM +test -r $HOME/.xinitrc-$WINDOWMANAGER && source $HOME/.xinitrc-$WINDOWMANAGER # day planer deamon # pland & And create a .xinitrc-blackbox file like this: xload -geometry 250x160+760+10 & xosview -geometry 235x360+1024+10 & rxvt -fn 9x15 -geometry 80x24+10+5 -bg black -fg white -sb -sl 2000 -T root -C & xbuffy -fill xhost +localhost bbkeys -iconic -noqt & bbmail & bbsload & bbweather -c -g +150-0 KAUS -u 1 & This starts a bunch of programs at startup. Note: xbuffy daemonizes itself. Most need to be run in the background (the trailing &). HTH, Jeffrey