On Fri 23 Feb 2018 at 10:23:53 (-0600), David Wright wrote: > > #!/bin/sh > exec /usr/bin/fvwm >| $HOME/.fvwm-stdout 2>| $HOME/.fvwm-stderr & > WMPID=$!
This line got wrapped; sorry. > xterm … > xterm … > swisswatch -title local -noshape > xconsole -name console -file /dev/xconsole -exitOnFail > xclock -strftime "%a %d" > # and so on > # wait for the window manager in the background to die > wait $WMPID A clean copy: #!/bin/sh exec /usr/bin/fvwm >| $HOME/.fvwm-stdout 2>| $HOME/.fvwm-stderr & WMPID=$! xterm … xterm … swisswatch -title local -noshape xconsole -name console -file /dev/xconsole -exitOnFail xclock -strftime "%a %d" # and so on # wait for the window manager in the background to die wait $WMPID Cheers, David.