On Fri, 11 Jun 2004 14:26:07 -0500 (CDT), "Benjamin J. Weiss" <benjamin@xxxxxxxxxx> wrote: >On Fri, 11 Jun 2004, Kevac Marko wrote: > >> Im` using XFCe (http://xfce.org) window manager and i want to use it in >> vnc session, not GNOME. How to do that? >> >> And also can i see MY desktop, not new by vnc? >> > >I don't use XFCe, but typically VNC looks at ~/.vnc/xstartup to decide >which window manager to start. > >VNC creates virtual desktops. There's another program that'll let you see >the one on the console, but I can't remember what it is. I like the way >VNC does it better. :) > For what it's worth, here's my ~/.vnc/xstartup file: #!/bin/sh [ -x /etc/vnc/xstartup ] && exec /etc/vnc/xstartup [ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources xsetroot -solid grey vncconfig -iconic & exec gnome-session & There's probably a similar exec for XFCe. VNC is kicked off on display 1 here: more /etc/sysconfig/vncservers VNCSERVERS="1:myuserid" -- Steve