Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions install.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,9 @@ Check "murmurflow setup (the model download)"
Say "Registering the listener to start at logon"
& $mf install
Check "murmurflow install"
# `install` sets up and starts nothing (the same verb as zyx and agent-office); `on` starts it.
& $mf on
Check "murmurflow on"

Write-Host ""
Say "Done. Open a NEW terminal and run: murmurflow doctor"
Expand Down
4 changes: 2 additions & 2 deletions murmurflow/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ def _doctor(*, verbs: bool = False) -> int:
if warm
else f"{why} — every clip pays the model load again, on the weaker cold path"
),
"murmurflow install (the listener starts and keeps it warm)",
"murmurflow on (the listener starts and keeps it warm)",
)
)
rows.append(
Expand Down Expand Up @@ -480,7 +480,7 @@ def _doctor(*, verbs: bool = False) -> int:
else f"{len(live)} AT ONCE ({', '.join(str(pid) for pid in live)}) "
"— every sentence is typed twice"
),
"murmurflow uninstall, then murmurflow install",
"murmurflow off, then murmurflow on",
)
)
# A murmurflow-only count reads "listeners: 1 [OK]" on a Mac where a SECOND program holds the
Expand Down
Loading