> 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
| 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.
> > 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'
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
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
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
6 matches
Mail list logo