docs(config): update plugin description and default output mode to clipboard

This commit is contained in:
Prad Nukala
2026-07-13 12:25:36 -04:00
parent 7921ac7c92
commit 13fcc50f36
+5 -5
View File
@@ -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]]