I use startx
to start X which will evaluate my .xinitrc
. In my .xinitrc
I start my window manager using /usr/bin/mywm
. Now, if I kill my WM (in order to f.e. test some other WM), X will terminate too because the .xinitrc
script reached EOF.
So I added this at the end of my .xinitrc
:
while true; do sleep 10000; done
This way X won't terminate if I kill my WM. Now my question: how can I do an infinite sleep instead of looping sleep? Is there a command which will kinda like freeze the script?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…