diff --git a/internal/recording/recording.go b/internal/recording/recording.go index a378e62..7a170e1 100644 --- a/internal/recording/recording.go +++ b/internal/recording/recording.go @@ -215,7 +215,7 @@ func CheckPipeWireAvailable(ctx context.Context) error { // Use a short timeout to avoid hangs on misconfigured systems. checkCtx, cancel := context.WithTimeout(ctx, 2*time.Second) defer cancel() - cmd := exec.CommandContext(checkCtx, "pw-cli", "info") + cmd := exec.CommandContext(checkCtx, "pw-cli", "info", "all") if err := cmd.Run(); err != nil { return fmt.Errorf("PipeWire not running or accessible: %w", err) }