diff --git a/start-all.ps1 b/start-all.ps1 index 6a05af5..070eeb6 100644 --- a/start-all.ps1 +++ b/start-all.ps1 @@ -1,5 +1,5 @@ <# - start-all.ps1 — launch all local Goliath watchers at once (background, no windows). + start-all.ps1 - launch all local Goliath watchers at once (background, no windows). Run from this folder: powershell -ExecutionPolicy Bypass -File .\start-all.ps1 Needs setup.ps1 to have installed Python + deps, and config.ini filled in (ntfy topic and/or [discord] webhook so alerts reach you). @@ -10,7 +10,7 @@ Set-Location $here if (Get-Command python -ErrorAction SilentlyContinue) { python -m pip install --quiet -r (Join-Path $here "requirements.txt") 2>$null } else { - Write-Warning "Python not found — run setup.ps1 first."; exit 1 + Write-Warning "Python not found - run setup.ps1 first."; exit 1 } # Headless intel watchers (run continuously, no interaction needed) @@ -26,7 +26,7 @@ if ($cfg -match "mode\s*=\s*ocr") { Start-Process pythonw -ArgumentList "`"$here\eve_orehold_watcher.py`"" -WorkingDirectory $here -WindowStyle Hidden Write-Host "started eve_orehold_watcher.py (OCR mode)" } else { - Write-Host "ore-hold watcher NOT started (timer mode is interactive — run it in its own window, or set mode=ocr + --snip)." + Write-Host "ore-hold watcher NOT started (timer mode is interactive - run it in its own window, or set mode=ocr + --snip)." } Write-Host ""