@echo off
REM Cogitator sticky note. A small always-there window for the current note.
REM Nothing is installed. Pin it with PowerToys: Win+Ctrl+T.
setlocal
set "URL=https://cogidemo.mullinsit.tech/mini"
set "SIZE=--window-size=340,430"
set "EDGE=%ProgramFiles(x86)%\Microsoft\Edge\Application\msedge.exe"
if exist "%EDGE%" ( start "" "%EDGE%" --app=%URL% %SIZE% & goto :eof )
set "EDGE64=%ProgramFiles%\Microsoft\Edge\Application\msedge.exe"
if exist "%EDGE64%" ( start "" "%EDGE64%" --app=%URL% %SIZE% & goto :eof )
set "CHROME=%ProgramFiles%\Google\Chrome\Application\chrome.exe"
if exist "%CHROME%" ( start "" "%CHROME%" --app=%URL% %SIZE% & goto :eof )
start "" %URL%
