Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!uunet!mcsun!ukc!acorn!ixi!ixi!paul From: paul@ixi.uucp (Paul Davey) Newsgroups: comp.windows.x Subject: Re: xdm => bug (or should I call it an insect) Message-ID: Date: 20 Aug 90 15:18:18 GMT References: <9008160412.AA18389@xenon.lcs.mit.edu> Sender: paul@x.co.uk (Paul Davey) Organization: IXI Ltd. Lines: 32 In-Reply-To: tale@turing.cs.rpi.edu's message of 17 Aug 90 08:31:28 GMT I have another way of making my window manager run with a customised environment, ~/.xsession #!/bin/sh HOST="@`hostname`" xrdb $HOME/.Xdefaults XLOGIN=1 export XLOGIN exec xterm -ls -geometry 80x24+0-0 -T "LOGIN$HOST" -n "LOGIN$HOST" and at the end of ~/.login if ( $?XLOGIN ) then unsetenv XLOGIN # set a local csh variable for my critical shell set ignoreeof (setenv LEVEL 0 ; uwm >& /tmp/uwmlog$$ & \ echo ; xhost + & \ xterm -ls -geometry 80x45+0+0 -T $ME@$THISHOST -n $ME@$THISHOST & \ xclock -g 100x100-0+0 & \ xbiff -g 100x50-0+100 & \ xmodmap $HOME/.Xmodmap & \ xset fp /usr/lib/X11/fonts/misc/,/usr/lib/X11/fonts/100dpi/,/usr/lib/X11/fonts/75dpi/ & ) endif It's not perfect but it works for me. paul