@echo off
title J.A.R.V.I.S. - Eronal Interface
color 0B
echo.
echo   ================================================
echo      J.A.R.V.I.S.  ::  ERONAL COMMAND INTERFACE
echo   ================================================
echo.
echo   Booting holographic subsystems...
echo.
set "JARVIS_URL=https://localhost:80"
set "CHROME=%ProgramFiles%\Google\Chrome\Application\chrome.exe"
if not exist "%CHROME%" set "CHROME=%ProgramFiles(x86)%\Google\Chrome\Application\chrome.exe"
set "EDGE=%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe"
if not exist "%EDGE%" set "EDGE=%ProgramFiles%\Microsoft\Edge\Application\msedge.exe"

if exist "%CHROME%" (
  start "" "%CHROME%" --app=%JARVIS_URL% --start-fullscreen --use-fake-ui-for-media-stream
) else if exist "%EDGE%" (
  start "" "%EDGE%" --app=%JARVIS_URL% --start-fullscreen --use-fake-ui-for-media-stream
) else (
  start %JARVIS_URL%
)

echo   Interface online. You may close this window.
timeout /t 3 >nul
exit
