Mon fichier / home/duncan/.xsession contient :
#!/bin/bash
# $XConsortium: xinitrc.cpp,v 1.4 91/08/22 11:41:34 rws Exp $
userresources=$HOME/.Xresources
usermodmap=$HOME/.Xmodmap
sysresources=/usr/X11R6.3/lib/X11/xinit/.Xresources
sysmodmap=/usr/X11R6.3/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
# The standard programs to start are here
xterm &
emacs &
xhost + fokine &
xhost + mercury &
# start the window manager and wait for it to finish
fvwm2
#/usr/local/enlightenment/bin/enlightenment -theme /usr/local/enlightenment/theme
#enlightenment
# stuff to do after exiting X
Les seules lignes vraiment importantes ici sont les dernières. Vous
pourriez facilement avoir un fichier /.xsession avec seulement une ligne
contenant votre gestionnaire de fenêtres par défaut. Notez que le
fichier xsession doit être exécutable - c.-à-d. passez la
commande chmod u+x .xsession une fois le fichier
créé.
les fichiers en téléchargement sont à ftp://ftp.linux-france.org/pub/macintosh/