feat(mac): add push-to-talk hotkey

This commit is contained in:
Peter Steinberger
2025-12-08 17:23:44 +01:00
parent a34ab1d36e
commit 0317eec10d
7 changed files with 297 additions and 0 deletions

View File

@@ -47,6 +47,12 @@ struct VoiceWakeSettings: View {
binding: self.voiceWakeBinding)
.disabled(!voiceWakeSupported)
SettingsToggleRow(
title: "Hold Cmd+Fn to talk",
subtitle: "Push-to-talk mode that starts listening while you hold the hotkey and shows the preview overlay.",
binding: self.$state.voicePushToTalkEnabled)
.disabled(!voiceWakeSupported)
if !voiceWakeSupported {
Label("Voice Wake requires macOS 26 or newer.", systemImage: "exclamationmark.triangle.fill")
.font(.callout)