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

推荐订阅源

V
Visual Studio Blog
罗磊的独立博客
小众软件
小众软件
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
博客园_首页
N
Netflix TechBlog - Medium
B
Blog
Recent Announcements
Recent Announcements
Y
Y Combinator Blog
Blog — PlanetScale
Blog — PlanetScale
L
LangChain Blog
F
Fortinet All Blogs
The GitHub Blog
The GitHub Blog
Stack Overflow Blog
Stack Overflow Blog
C
Check Point Blog
Last Week in AI
Last Week in AI
Jina AI
Jina AI
V
V2EX
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
博客园 - 叶小钗
博客园 - 【当耐特】

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