filo_caspar/openbrowser.bat

13 lines
218 B
Batchfile
Raw Normal View History

2018-06-26 20:06:30 +00:00
@ECHO OFF
2018-06-26 19:54:51 +00:00
:start
timeout 3
curl localhost:3000
IF %errorlevel% NEQ 0 GOTO :start
2018-06-26 20:06:30 +00:00
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --start-fullscreen http://localhost:3000/status.html
EXIT