Dominik Vogt wrote: > On Mon, Nov 24, 2008 at 06:47:09PM +0100, Harald Dunkel wrote: >> I am running the snapshot of yesterday (2008/11/23) on 2 screens. The second >> screen gets its own fvwm. Both share the same .fvwm2rc file, AFAICS. >> >> Problem: If I click on [Restart] on the first screen, then its fvwm exits >> instead. Twm is started as a fallback. The error log file says >> >> [fvwm.0][SetupICCCM2]: <<ERROR>> another ICCCM 2.0 compliant WM is running, >> try -replace >> >> The fvwm on the second screen is still running. > > How do you start fvwm (what does the command line look like). >
Here is my .xinitrc script: #!/bin/bash (fvwm || twm) & wmpid=$! sleep 1 test -f .xmodmap && xmodmap .xmodmap xterm -bg black -fg white -sb & wait $wmpid exit 0 On a restart the parent fvwm, which is managing screen 0, exits instead of being restarted, and twm drops into its place. The child fvwm keeps screen 1, and twm complains that it cannot access all screens. Regards Harri