Where have you installed the binary fvwn?
And is it called fvwm or fvwm2?
Is it in your PATH?
If you use a graphical display manager login
(xdm, kdm, gdm, wdm) create a file $HOME/.xsession containing
#! /bin/sh
fvwm & wm_pid=${!}
xclock &
xosview &
wait ${wm_pid}
exit 0
and chmod 700 $HOME/.xsession
If you just use startx, use $HOME/.xinitrc as the name instead.
|