LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   VectorLinux (https://www.linuxquestions.org/questions/vectorlinux-36/)
-   -   Start XFCE autoamtically? (https://www.linuxquestions.org/questions/vectorlinux-36/start-xfce-autoamtically-117293/)

bongski55 11-17-2003 11:57 PM

Start XFCE autoamtically?
 
How can you make XFCE start automatically instead of the selection menu?
Also since XFCE has no login screen(does it have one?) how can we go about login of different users(and root)?

Joe1962 11-18-2003 12:43 AM

With xwmconfig (which you can also reach through vasm), you get to choose which WM you want as default. Don't know about the login part though, since I still boot to text mode before starting X.

bongski55 11-18-2003 02:11 AM

Quote:

Originally posted by Joe1962
With xwmconfig (which you can also reach through vasm), you get to choose which WM you want as default. Don't know about the login part though, since I still boot to text mode before starting X.
I know about xwmconfig but I do not have xfce as a choice in that menu. If you have that choice please tell me how I could "insert" it on my xwmconfig menu.

I am booting to text mode now and type 'xfcestart' but I want to do it automatically as in kde style.

stuNNed 11-18-2003 06:45 PM

you can create an ~/.xinitrc and put your windowmanager options in there

Kocil 11-30-2003 02:08 PM

as root
cd /etc/X11/xinit
cp xinitrc xinitrc.xfce
mcedit xinitrc.xfce

Here is the file after editing.
You should have xfce on xwmconfig.


#!/bin/sh
# $Xorg: xinitrc.cpp,v 1.3 2000/08/17 19:54:30 cpqbld Exp $

userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6/lib/X11/xinit/.Xmodmap

# merge in defaults and keymaps

if [ -f $sysresources ]; then
xrdb -merge $sysresources
fi

if [ -f $sysmodmap ]; then
xmodmap $sysmodmap
fi

if [ -f $userresources ]; then
xrdb -merge $userresources
fi

if [ -f $usermodmap ]; then
xmodmap $usermodmap
fi

# start WM
dfm &
exec startxfce


All times are GMT -5. The time now is 07:50 PM.