- Replace Gtk.Notebook tab bar with a 170px left sidebar (flat buttons, section headers) + Gtk.Stack navigation; dialog widened to 860×700 - Split "Input" page into "Keyboard" (keys, quality gate, audio cues) and "Wakeword" (enable switch, mic level, test, engine CRUD, sound cues) - Split "Benchmark" page into "Benchmark — STT" and "Benchmark — Wakeword" - Remove _page() helper and bt-nb CSS; add .bt-sidebar-active + .sidebar CSS - Lazy-loading preserved via _pending_pages dict + _show_page/_build_page - Meter start guard kept in both _build_keyboard and _build_wakeword Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
385 B
Python
10 lines
385 B
Python
"""Blitztext for Linux — native dictation daemon.
|
|
|
|
Press a global hotkey, speak, and the transcribed (optionally LLM-rewritten)
|
|
text is typed into whatever text field currently has focus. This is the Linux
|
|
counterpart to the macOS Blitztext menu bar app: it runs natively on the host
|
|
(not in a container) so it can type into any application via xdotool.
|
|
"""
|
|
|
|
__version__ = "2.03.32"
|