Replies: 2 comments
-
|
Here are two real-world use cases that motivated this request: Use case 1: Avoiding AirPods as a recording microphone I have AirPods that automatically become the system default microphone whenever they connect. I never want Handy to use them for dictation — the microphone quality is not suitable. But I cannot simply "not set a default" in the OS, because other apps rely on that behavior. With a prioritized list I can set:
AirPods are never in the list, so Handy will never pick them up, even if they become the system default. Use case 2: Graceful fallback when the primary mic is unplugged When I leave my desk, I unplug the USB microphone. Without this feature, Handy would either fail silently or switch to AirPods (the new system default) — neither is what I want. With the priority list, Handy automatically falls back to the MacBook built-in mic, which is always available. Both cases are solved by the same mechanism: an ordered list where the first available device wins, and the system default is never consulted unless the list is empty. |
Beta Was this translation helpful? Give feedback.
-
|
Implementation submitted as PR: #1070 |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Problem
Currently Handy lets you pick a single microphone. If that microphone gets disconnected (e.g. you unplug your USB mic or disconnect a Bluetooth headset), Handy silently falls back to the system default with no control over which device gets used next.
Proposed Solution
Replace the single microphone selector with an ordered priority list:
Example Use Case
When the USB mic is connected → it is used. When it is unplugged → MacBook mic kicks in automatically, no manual switching needed.
Why This Matters
This is a natural extension of the existing clamshell microphone feature, but generalized for all users — not just MacBook users in clamshell mode. Anyone who switches between setups (desk vs. on the go, wired vs. wireless) would benefit.
UI Sketch
Would love to hear if others find this useful!
Beta Was this translation helpful? Give feedback.
All reactions