> > then there is a SeaMonkey error because it's waiting for the NB to > > start at localhost:8000 > > I struggled with that briefly, but I couldn't come up with a better > solution so far than just to wait a fixed amount of time > before the start of the browser. Could anyone provide a short snipped > of bash code that > waits for a reponse on port 8000 and -then- starts the browser?
About minimize window and delayed sturtup of the browser: currently this is executed by the sage notebook icon #!/bin/sh xterm -e sage -notebook & sleep 5 defaultbrowser http://localhost:8000 & any ideas anybody? In fact it could also be a short python script. -- To post to this group, send an email to sage-devel@googlegroups.com To unsubscribe from this group, send an email to sage-devel+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sage-devel URL: http://www.sagemath.org