From 13fcc50f3696703974696e2b5d40f0291b6d29bd Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Mon, 13 Jul 2026 12:25:36 -0400 Subject: [PATCH] docs(config): update plugin description and default output mode to clipboard --- plugin.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/plugin.toml b/plugin.toml index 6c8d63b..1dadcca 100644 --- a/plugin.toml +++ b/plugin.toml @@ -2,8 +2,8 @@ # # A bar widget that toggles an ostt (https://github.com/kristoferlund/ostt) # recording headlessly — no popup terminal — and shows a live record indicator -# while the microphone is capturing. Transcriptions default to being pasted -# into the focused app (ostt --paste). +# while the microphone is capturing. Transcriptions are copied to the +# clipboard by default (switch to ostt --paste in the widget settings). # # recorder [[widget]] the bar capsule: indicator + click-to-toggle # monitor [[service]] polls ostt's recording.pid and publishes status @@ -20,7 +20,7 @@ license = "MIT" dependencies = [] tags = ["audio", "voice", "speech-to-text", "productivity"] icon = "microphone" -description = "Voice-to-text with OSTT: click the mic (or bind a hotkey) to record, click again to transcribe and paste straight into the focused app. Shows a red record indicator while the microphone is live." +description = "Voice-to-text with OSTT: click the mic (or bind a hotkey) to record, click again to transcribe straight to your clipboard — or paste into the focused app. Shows a red record indicator while the microphone is live." [[widget]] id = "recorder" @@ -31,10 +31,10 @@ entry = "recorder.luau" type = "select" label_key = "settings.output_mode.label" description_key = "settings.output_mode.description" - default = "paste" + default = "clipboard" options = [ - { value = "paste", label_key = "settings.output_mode.paste" }, { value = "clipboard", label_key = "settings.output_mode.clipboard" }, + { value = "paste", label_key = "settings.output_mode.paste" }, ] [[widget.setting]]