You are not logged in.
Pages: 1
Hi all,
I've installed both XFCE & SLiM but did not configure SLiM to use XFCE! (how do you do that?)
SLiM loads from rc.conf in Daemons section.
Now the problem is I can't log in to my machine; that is XFCE will not load... I just get the SLiM splash screen, enter my usr & pwd and nothing happens!
How do I fix this? And get to the command prompt?
Thanks
Offline
ctrl-alt-f2?
I am a gated community.
Offline
ctrl-alt-f2?
Excellent, thanks
Now how do I configure SLiM to load XFCE?
Thanks
Last edited by Aerodyne (2007-05-16 16:23:28)
Offline
It just loads your ~/.xsession, the same way that xdm does.
You might look at ~/.xsession-errors and see if anything complained.
Offline
if you want to choose your wm, your ~/.xinitrc would look similar to that:
#!/bin/bash
case $1 in
xfce4)
#lxpanel &
exec xfce4-session
;;
e17)
exec /opt/e17/bin/enlightenment_start
;;
metisse)
Xmetisse -ac -depth 16 -geometry 1024x768 :1 &
metisse-start-fvwm &
xterm
killall Xmetisse
;;
*)
#lxpanel &
exec xfce4-session
;;
esac
you would have to mention your sessions in slim.conf:
sessions xfce4,e17,metisse
first session is default i think...
Last edited by Mhyrraner (2007-05-16 17:33:12)
Offline
I'm not sure if I modified anything else in /etc/slim.conf, but I think the main part was to put 'xfce4' first in 'sessions'.
1000
Offline
I, personnally did not touch the /etc/slim.conf file. I just added "exec xfce4-session" in ~/.xinitrc and Slim launched Xfce properly...
Piou Piou
Offline
Thanks all
Offline
Pages: 1