fix interactive prompt

This commit is contained in:
onyx-and-iris 2026-01-20 13:20:43 +00:00
parent aaa4672cbc
commit 3d87f5c03f

View File

@ -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
}