Xfce Start XFCE automatically with login on tty

If you want to start XFCE automatically when you login on tty, append this rows into your ~./profile file:

Code:
if [ "$(tty)" = "/dev/ttyv0" ] ; then
  startxfce4 --with-ck-launch
fi

It works for me! ;)
 
Last edited by a moderator:
Back
Top