On Sat, Aug 14, 2010 at 11:10 PM, Karl Sinn said:
> Next problem:
> Is it possible to start e17 from konsole within kde4 with startx in a 
> different xsession?
> I tried "startx -- :1" but it always brings me kde.

This could be due to your ~/.xinitrc file (or lack thereof).  The
following should work but you may want/need something more complicated:

#!/bin/bash
enlightenment_start

Sometimes .xinitrc contains a case statement that allows you to select
which type of session to start via a command line argument.  You should
be able to do this with either:

    $ startx $SESSION -- :1

or
    $ xinit $SESSION -- :1

where $SESSION is the name of the session type you want.  It is passed
to the ~/.xinitrc script as $1.  If your .xinitrc contains a case
statement then you can add the following three lines inside of it:

e17)
    enlightenment_start
    ;;

and then start with:

    $ xinit e17 -- :1

or

    $ startx e17 -- :1


Peace, James

Always meditate on whatever you resent.
                       -- Lojong Slogan

------------------------------------------------------------------------------
This SF.net email is sponsored by 

Make an app they can't live without
Enter the BlackBerry Developer Challenge
http://p.sf.net/sfu/RIM-dev2dev 
_______________________________________________
enlightenment-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/enlightenment-users

Reply via email to