From 3d87f5c03fa15ccc5fa9cf5c6c8a331dfc42bfd9 Mon Sep 17 00:00:00 2001 From: onyx-and-iris Date: Tue, 20 Jan 2026 13:20:43 +0000 Subject: [PATCH] fix interactive prompt --- examples/cli/CLI.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cli/CLI.ps1 b/examples/cli/CLI.ps1 index 98a207f..71e9a82 100644 --- a/examples/cli/CLI.ps1 +++ b/examples/cli/CLI.ps1 @@ -95,8 +95,8 @@ function Start-VoicemeeterCLI { [object]$vmr ) - Write-Host "Voicemeeter CLI Interactive Mode. Type 'exit' to quit." - while (($input = Read-Host "Press Enter to rotate buses or type 'Q' to quit.") -ne 'Q') { + Write-Host "Connected to Voicemeeter. Type 'Q' to quit." -ForegroundColor Green + while (($input = Read-Host "command") -ne 'Q') { try { Invoke-VoicemeeterCLICommand -vmr $vmr -Command $input }