On Mon, 30 Aug 1999 [EMAIL PROTECTED] wrote: > Sorry about the dumb question. I just installed both Gnome and KDE in my > slink system, wanting to try both, and suddenly realized that I may not be > able to work with both. I had thought to use my .xsession file for gnome, > then switch to another user and somehow list kde for that account. Is this > possible? Or do I need to trash one then reinstall later?
I did the same thing, with two simple scripts to install the appropriate ~/.xsession file: #!/bin/sh cp -p ~/.xsession-KDE ~/.xsession startx -- -bpp 16 #!/bin/sh cp -p ~/.xsession-gnome ~/.xsession startx -- -bpp 16 ...RickM...