aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/dot_local/bin/executable_dictate
diff options
context:
space:
mode:
authorLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:23 +0100
committerLibravatar sommerfeld <sommerfeld@sommerfeld.dev>2026-05-13 13:43:23 +0100
commit5c241d65ed4a6ec2bc3e5d75d6858ed6722f1b17 (patch)
tree9885503fbde0324c04e51c6cd70bce143c4a8355 /dot_local/bin/executable_dictate
parentd2da7ff900f360c0eec1e17f62df1358651ed77c (diff)
downloaddotfiles-5c241d65ed4a6ec2bc3e5d75d6858ed6722f1b17.tar.gz
dotfiles-5c241d65ed4a6ec2bc3e5d75d6858ed6722f1b17.tar.bz2
dotfiles-5c241d65ed4a6ec2bc3e5d75d6858ed6722f1b17.zip
feat(sway): add dictate (whisper.cpp) and ocr (tesseract) keybinds
Push-to-talk dictation toggle on Super+i: parecord captures 16 kHz mono WAV, whisper-cli transcribes (auto language), output is typed via wtype and copied to the clipboard. Region OCR on Super+Shift+o: slurp + grim feed tesseract (eng+por), result lands in the clipboard with a notification preview. Adds wtype to wayland.txt; tesseract (+eng/por data) and whisper.cpp + the large-v3-turbo-q5_0 model package to extra.txt.
Diffstat (limited to 'dot_local/bin/executable_dictate')
-rw-r--r--dot_local/bin/executable_dictate87
1 files changed, 87 insertions, 0 deletions
diff --git a/dot_local/bin/executable_dictate b/dot_local/bin/executable_dictate
new file mode 100644
index 0000000..2e8a361
--- /dev/null
+++ b/dot_local/bin/executable_dictate
@@ -0,0 +1,87 @@
+#!/usr/bin/env sh
+# Push-to-talk dictation. Toggle: 1st invocation starts recording;
+# 2nd stops, transcribes via whisper.cpp, types the result into the focused
+# window with wtype, and copies it to the clipboard.
+#
+# Pacman: pipewire-pulse (parecord), wtype, wl-clipboard, libnotify
+# AUR: whisper.cpp, whisper.cpp-model-large-v3-turbo-q5_0
+#
+# Override via env:
+# WHISPER_MODEL path to a ggml-*.bin model
+# WHISPER_LANG language code or 'auto' (default: auto)
+
+set -eu
+
+state_dir="${XDG_RUNTIME_DIR:-/tmp}/dictate"
+pid_file="$state_dir/pid"
+wav_file="$state_dir/audio.wav"
+log_file="$state_dir/whisper.log"
+default_model='/usr/share/whisper.cpp-model-large-v3-turbo-q5_0/ggml-large-v3-turbo-q5_0.bin'
+model="${WHISPER_MODEL:-$default_model}"
+lang="${WHISPER_LANG:-auto}"
+
+mkdir -p "$state_dir"
+
+is_recording() {
+ [ -r "$pid_file" ] && kill -0 "$(cat "$pid_file")" 2>/dev/null
+}
+
+start_recording() {
+ if ! command -v whisper-cli >/dev/null; then
+ notify-send -u critical "🎙️ dictate" \
+ "whisper-cli not found. Install whisper.cpp (AUR)."
+ exit 1
+ fi
+ if [ ! -r "$model" ]; then
+ notify-send -u critical "🎙️ dictate" \
+ "Model missing: $model. Install whisper.cpp-model-large-v3-turbo-q5_0 (AUR)."
+ exit 1
+ fi
+ rm -f "$wav_file"
+ parecord --format=s16le --rate=16000 --channels=1 "$wav_file" \
+ >"$log_file" 2>&1 &
+ echo "$!" >"$pid_file"
+ notify-send -t 1500 "🎙️ Recording…" "Press the bind again to stop."
+}
+
+stop_and_transcribe() {
+ pid="$(cat "$pid_file")"
+ rm -f "$pid_file"
+ kill -TERM "$pid" 2>/dev/null || true
+ # Give parecord up to 2s to flush the WAV header.
+ i=0
+ while kill -0 "$pid" 2>/dev/null && [ "$i" -lt 20 ]; do
+ sleep 0.1
+ i=$((i + 1))
+ done
+ kill -KILL "$pid" 2>/dev/null || true
+
+ if [ ! -s "$wav_file" ]; then
+ notify-send -u low "🎙️ dictate" "No audio captured."
+ exit 1
+ fi
+
+ notify-send -t 1500 "🎙️ Transcribing…"
+
+ text="$(
+ whisper-cli -m "$model" -f "$wav_file" \
+ -l "$lang" -nt -np -t "$(nproc)" 2>"$log_file" \
+ | tr -s '[:space:]' ' ' \
+ | sed -e 's/^ //; s/ $//'
+ )"
+
+ if [ -z "$text" ]; then
+ notify-send -u low "🎙️ dictate" "Empty transcription. See $log_file."
+ exit 1
+ fi
+
+ printf '%s' "$text" | wl-copy
+ wtype -- "$text"
+ notify-send -t 2500 "🎙️ Dictated" "$text"
+}
+
+if is_recording; then
+ stop_and_transcribe
+else
+ start_recording
+fi