On Sun, Aug 01, 1999 at 01:47:37AM +0200, Marc Meier wrote: > I tried to execute my .bashrc from .xsession or to set the > variables in the .xsession, but the X-session refused to start even if > an empty ~/.xsession file exist.
AFAIK, you need to launch your window manager at the end of your .xsession (which must be a proper script with execution rights). A minimal .xsession could be something like : --------------------------------------------------- #!/bin/bash # Set up some environment variables LANG=french LC_ALL=fr_FR export LANG LC_ALL # Finish .xsession by launching my window manager /usr/X11R6/bin/wmaker --------------------------------------------------- Hope it helps. Jean-Philippe

