Re: startup commands

1999-08-15 Thread Morgan Wajda-Levie
> OK I am running xwm. Can that mess things up ? > > I put my lines in .xsession and included > exec windowmaker& > as the last line. You don't want that &. That puts windowmaker in the background, and you don't want that. > If I log in from xwm with "no change" as wm > I just bounce right ba

Re: startup commands

1999-08-15 Thread Eric G . Miller
| OK I am running xwm. Can that mess things up ? | | I put my lines in .xsession and included | exec windowmaker& | as the last line. | | If I log in from xwm with "no change" as wm | I just bounce right back out to xwm login again. | And if I choose a wm in xwm my commands wont | be executed.

Re: startup commands

1999-08-15 Thread Jocke
> > I am trying to start mutt and 1 rxvt shell when > > a specific user logs into X. > > I tried to put > > > > #! /bin/bash > > # > > exec mutt& > > exec rxvt& > > > > > > in bit .xinitrc and .xsession but nothing really happens. > > How do I execute these commands at startup ? > > You don'

Re: startup commands

1999-08-15 Thread Morgan Wajda-Levie
all, > > I am trying to start mutt and 1 rxvt shell when > a specific user logs into X. > I tried to put > > #! /bin/bash > # > exec mutt& > exec rxvt& > > > in bit .xinitrc and .xsession but nothing really happens. > How do I execute these commands at startup ? You don't want to exec the c

Re: startup commands

1999-08-15 Thread Eric G . Miller
Leave off the exec part. For instance, in ~/.xsession #!/bin/bash rxvt& # plain rxterm rxvt -e mutt & # rxvt with mutt running inside of it exec fvwm2 # exec window manager as last item Make sure ~/.xsession is executable (chmod 700 ~/.xsession). On Sun, Aug 15, 1999 at 01:18:44PM

startup commands

1999-08-15 Thread Jocke
Hi all, I am trying to start mutt and 1 rxvt shell when a specific user logs into X. I tried to put #! /bin/bash # exec mutt& exec rxvt& in bit .xinitrc and .xsession but nothing really happens. How do I execute these commands at startup ? Best regards Joakim