惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
S
SegmentFault 最新的问题
N
Netflix TechBlog - Medium
Vercel News
Vercel News
F
Fortinet All Blogs
量子位
博客园 - Franky
酷 壳 – CoolShell
酷 壳 – CoolShell
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
GbyAI
GbyAI
博客园 - 三生石上(FineUI控件)
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
月光博客
月光博客
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
Hugging Face - Blog
Hugging Face - Blog
D
DataBreaches.Net
H
Help Net Security
阮一峰的网络日志
阮一峰的网络日志
D
Docker
WordPress大学
WordPress大学

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Dabri: Linux Speech-to-Text, the Unix Way
Asher Buk · 2026-05-20 · via DEV Community

Backstory:

A year ago I built a speech-to-text assistant for myself, because on Linux this has always been a pain and there still was not really anything solid. And a system-wide "keyboard" for inserting voice into any window is a superpower, a productivity boost, and a daily necessity.

Today there are already many new STT projects, but Dabri still feels irreplaceable, because:

  • Most voice-to-text tools are either cloud-first (↓no privacy), browser-first (not a native part of the desktop), or app-first (↑heavy, ↓poor automation).
  • There are a lot of Python scripts in the field, which are good for glue and prototypes, but become fragile once they grow into a long-running service with packaging, hotkeys, audio, IPC, and native distribution.

Dabri's answer: one small Go binary, a quiet user-space daemon, CLI commands, Unix socket IPC, and optional WebSocket for pipelines.

It is packaged as a cross-distro AppImage
and also as native packages for Fedora (COPR) and Arch Linux (AUR).

Linux has great building blocks: shell, window managers, pipes, hotkeys, system services, clipboard tools. Voice input should feel like one more native building block, not like a separate product living outside the desktop.

A good STT tool should be quiet, invokable, scriptable, and easy to automate.

The simplest automation example:

Add this to ~/.config/autostart (XDG autostart) if you are on a DE like GNOME / KDE / XFCE:

[Desktop Entry]
Name=Dabri
Exec=dabri
Icon=io.github.ashbuk.dabri
Type=Application
Terminal=false
X-GNOME-Autostart-enabled=true

Enter fullscreen mode Exit fullscreen mode

Or add this line to your Hyprland config:

exec-once = dabri

Enter fullscreen mode Exit fullscreen mode

and Dabri will be available as soon as your computer starts.

Advanced automations

Save voice notes to a file:

dabri start
# speak...
dabri stop >> ~/voice-notes.md

Enter fullscreen mode Exit fullscreen mode

Pipe transcript into any tool — translate, summarize, look something up:

text=$(dabri stop)
echo "$text" | wl-copy          # copy to Wayland clipboard
# or: echo "$text" | xclip -sel clip   # X11

Enter fullscreen mode Exit fullscreen mode

Voice-controlled smart home — trigger Home Assistant actions by speaking:

transcript=$(dabri --json stop | jq -r '.data.transcript')
[[ "$transcript" == *"lights off"* ]] && curl -X POST http://homeassistant.local/api/lights/off

Enter fullscreen mode Exit fullscreen mode

The WebSocket server opens localhost:8080 for remote integrations — useful for IoT pipelines and home automation hubs that prefer HTTP/WS over Unix sockets. Enable it in config:

web_server:
  enabled: true
  port: 8080
  host: localhost

Enter fullscreen mode Exit fullscreen mode

Binding a button for recording and choosing a model, like other settings, is available through the tray or CLI. The Whisper.cpp Large V3 Turbo model is basically state of the art right now. It works beautifully with multi-language input and is very accurate and fast on newer laptops.

Why the rename?

I rebranded my project from Speak-to-AI to Dabri... because with the AI boom, SEO became a real pain, the project was simply getting lost in search.
A descriptive, domain-like name may look useful, but it mostly works only while the project is needed just by you. Warm references in blogs, mentions in online Linux magazines, and the first 100 ⭐ stars on GitHub pushed me to rename it - hopefully, the ship catches a new wind :)

Thanks for the attention,
Asher