https://bugzilla.novell.com/show_bug.cgi?id=235044 sndirsch@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |werner@novell.com Status|NEEDINFO |ASSIGNED Info Provider|swyear@yahoo.com.tw | ------- Comment #10 from sndirsch@novell.com 2007-02-28 10:03 MST ------- AFAIK /etc/X11/xdm/Xsession is running before $XINITRC and sources /etc/X11/xinit/xinitrc.common before executing $XINITRC. This might explain the behaviour. /etc/X11/xdm/Xsession: [...] # # Source common code shared between the # X session and X init scripts # /etc/X11/xinit/xinitrc.common # # Some common user and system files # session=$HOME/.xsession xinitrc=$HOME/.xinitrc sysinit=$XINITDIR/xinitrc syssess=$XDMDIR/sys.xsession # # Forced X session type if the user asked for # an other session environment. # if test "$forced" = "yes" ; then unset WINDOW_MANAGER STARTUP test -x $syssess && exec_login "$syssess" exec_login "/bin/bash $syssess" fi # User login X session # If the user doesn't have their own xsession, then run # system xsession or xinitrc script if they exist if test -f $session ; then test -x $session && exec_login "$session" exec_login "/bin/bash $session" elif test -f $xinitrc ; then test -x $xinitrc && exec_login "$xinitrc" exec_login "/bin/bash $xinitrc" elif test -f $syssess; then test -x $syssess && exec_login "$syssess" exec_login "/bin/bash $syssess" elif test -f $sysinit ; then test -x $sysinit && exec_login "$sysinit" exec_login "/bin/bash $sysinit" elif test -n "$WINDOWMANAGER" ; then unset WINDOW_MANAGER STARTUP exec_login "$WINDOWMANAGER" fi -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.