This is a personal fork of cjpais/Handy by Melvyn. It adds custom features on top of the original Handy app while keeping full compatibility with upstream.
- Full Handy to Parler rebrand - new name, new app icon, updated identifiers across the entire codebase
- Geist Pixel font logo - app name rendered with Geist Pixel Circle font for a distinctive look
- ParlerDev development flavor - separate
com.melvynx.parler.devidentifier to run dev and production builds side-by-side
- Unified provider system - post-process transcriptions with AI using multiple providers: OpenAI, Groq, Cerebras, Anthropic, OpenRouter, Gemini, Apple Intelligence (macOS ARM64)
- Saved processing models - save provider + model combinations for quick reuse
- Numbered actions (1-9) - create up to 9 custom post-processing actions with their own prompt and model, triggered via keyboard shortcuts during recording
- Post-processing promoted to stable - moved from experimental to a core feature with its own settings tab
- System prompt enforcement - action processing outputs only the final processed text, no extra commentary
- Post-processing tracking in history - stores which action was used, displays both original and post-processed text side by side
- Model name tracking - history entries now record which transcription model was used
- History reprocessing - re-transcribe previously recorded audio with a different model directly from history
- New minimal overlay UI - redesigned recording overlay with border-based style instead of shadows
- Pause/Resume support - pause and resume recording mid-session with dedicated shortcut (F6) and overlay button
- Double-press cancel confirmation - cancel requires two presses within 1.5s to prevent accidental cancellations
- Improved multi-monitor support - hardened overlay positioning with intelligent fallback across monitors, handles mixed-DPI setups on macOS
- Mute-aware audio feedback - skips feedback sounds when system volume is muted (macOS + Windows)
- Recommended model badges - Parakeet V3 and Whisper Turbo marked as "Recommended" in the model selector
- Removed standalone Gemini settings - Gemini configuration moved into the unified provider system
- Removed Windows builds from release workflow (macOS-only focus)
- Pinned Tauri NPM packages to match Rust crate versions for build stability
- Various overlay fixes - bubble visibility on external displays, cursor position detection
A free, open source, and extensible speech-to-text application.
Parler is a cross-platform desktop application that provides speech transcription. Press a shortcut, speak, and have your words appear in any text field - locally or enhanced with cloud AI post-processing.
- Press a configurable keyboard shortcut to start/stop recording (or use push-to-talk mode)
- Speak your words while the shortcut is active
- Release and Parler processes your speech using Whisper
- Get your transcribed text pasted directly into whatever app you're using
The process is entirely local:
- Silence is filtered using VAD (Voice Activity Detection) with Silero
- Transcription uses your choice of models:
- Whisper models (Small/Medium/Turbo/Large) with GPU acceleration when available
- Parakeet V3 - CPU-optimized model with excellent performance and automatic language detection
- Works on Windows, macOS, and Linux
- Download the latest release from the releases page
- Install the application
- Launch Parler and grant necessary system permissions (microphone, accessibility)
- Configure your preferred keyboard shortcuts in Settings
- Start transcribing!
For detailed build instructions including platform-specific requirements, see BUILD.md.
Parler is built as a Tauri application combining:
- Frontend: React + TypeScript with Tailwind CSS for the settings UI
- Backend: Rust for system integration, audio processing, and ML inference
- Core Libraries:
whisper-rs: Local speech recognition with Whisper modelstranscription-rs: CPU-optimized speech recognition with Parakeet modelscpal: Cross-platform audio I/Ovad-rs: Voice Activity Detectionrdev: Global keyboard shortcuts and system eventsrubato: Audio resampling
Parler includes an advanced debug mode for development and troubleshooting. Access it by pressing:
- macOS:
Cmd+Shift+D - Windows/Linux:
Ctrl+Shift+D
Parler supports command-line flags for controlling a running instance and customizing startup behavior. These work on all platforms (macOS, Windows, Linux).
Remote control flags (sent to an already-running instance via the single-instance plugin):
handy --toggle-transcription # Toggle recording on/off
handy --toggle-post-process # Toggle recording with post-processing on/off
handy --cancel # Cancel the current operationStartup flags:
handy --start-hidden # Start without showing the main window
handy --no-tray # Start without the system tray icon
handy --debug # Enable debug mode with verbose logging
handy --help # Show all available flagsFlags can be combined for autostart scenarios:
handy --start-hidden --no-traymacOS tip: When Parler is installed as an app bundle, invoke the binary directly:
/Applications/Parler.app/Contents/MacOS/Parler --toggle-transcription
This project is actively being developed and has some known issues. We believe in transparency about the current state:
Whisper Model Crashes:
- Whisper models crash on certain system configurations (Windows and Linux)
- Does not affect all systems - issue is configuration-dependent
- If you experience crashes and are a developer, please help to fix and provide debug logs!
Wayland Support (Linux):
- Limited support for Wayland display server
- Requires
wtypeordotoolfor text input to work correctly (see Linux Notes below for installation)
Text Input Tools:
For reliable text input on Linux, install the appropriate tool for your display server:
| Display Server | Recommended Tool | Install Command |
|---|---|---|
| X11 | xdotool |
sudo apt install xdotool |
| Wayland | wtype |
sudo apt install wtype |
| Both | dotool |
sudo apt install dotool (requires input group) |
- X11: Install
xdotoolfor both direct typing and clipboard paste shortcuts - Wayland: Install
wtype(preferred) ordotoolfor text input to work correctly - dotool setup: Requires adding your user to the
inputgroup:sudo usermod -aG input $USER(then log out and back in)
Without these tools, Parler falls back to enigo which may have limited compatibility, especially on Wayland.
Other Notes:
-
Runtime library dependency (
libgtk-layer-shell.so.0):-
Parler links
gtk-layer-shellon Linux. If startup fails witherror while loading shared libraries: libgtk-layer-shell.so.0, install the runtime package for your distro:Distro Package to install Example command Ubuntu/Debian libgtk-layer-shell0sudo apt install libgtk-layer-shell0Fedora/RHEL gtk-layer-shellsudo dnf install gtk-layer-shellArch Linux gtk-layer-shellsudo pacman -S gtk-layer-shell -
For building from source on Ubuntu/Debian, you may also need
libgtk-layer-shell-dev.
-
-
The recording overlay is disabled by default on Linux (
Overlay Position: None) because certain compositors treat it as the active window. When the overlay is visible it can steal focus, which prevents Parler from pasting back into the application that triggered transcription. If you enable the overlay anyway, be aware that clipboard-based pasting might fail or end up in the wrong window. -
If you are having trouble with the app, running with the environment variable
WEBKIT_DISABLE_DMABUF_RENDERER=1may help -
Global keyboard shortcuts (Wayland): On Wayland, system-level shortcuts must be configured through your desktop environment or window manager. Use the CLI flags as the command for your custom shortcut.
GNOME:
- Open Settings > Keyboard > Keyboard Shortcuts > Custom Shortcuts
- Click the + button to add a new shortcut
- Set the Name to
Toggle Parler Transcription - Set the Command to
handy --toggle-transcription - Click Set Shortcut and press your desired key combination (e.g.,
Super+O)
KDE Plasma:
- Open System Settings > Shortcuts > Custom Shortcuts
- Click Edit > New > Global Shortcut > Command/URL
- Name it
Toggle Parler Transcription - In the Trigger tab, set your desired key combination
- In the Action tab, set the command to
handy --toggle-transcription
Sway / i3:
Add to your config file (
~/.config/sway/configor~/.config/i3/config):bindsym $mod+o exec handy --toggle-transcription
Hyprland:
Add to your config file (
~/.config/hypr/hyprland.conf):bind = $mainMod, O, exec, handy --toggle-transcription -
You can also manage global shortcuts outside of Parler via Unix signals, which lets Wayland window managers or other hotkey daemons keep ownership of keybindings:
Signal Action Example SIGUSR2Toggle transcription pkill -USR2 -n handySIGUSR1Toggle transcription with post-processing pkill -USR1 -n handyExample Sway config:
bindsym $mod+o exec pkill -USR2 -n handy bindsym $mod+p exec pkill -USR1 -n handy
pkillhere simply delivers the signal—it does not terminate the process.
- macOS (both Intel and Apple Silicon)
- x64 Windows
- x64 Linux
The following are recommendations for running Parler on your own machine. If you don't meet the system requirements, the performance of the application may be degraded. We are working on improving the performance across all kinds of computers and hardware.
For Whisper Models:
- macOS: M series Mac, Intel Mac
- Windows: Intel, AMD, or NVIDIA GPU
- Linux: Intel, AMD, or NVIDIA GPU
- Ubuntu 22.04, 24.04
For Parakeet V3 Model:
- CPU-only operation - runs on a wide variety of hardware
- Minimum: Intel Skylake (6th gen) or equivalent AMD processors
- Performance: ~5x real-time speed on mid-range hardware (tested on i5)
- Automatic language detection - no manual language selection required
If you're behind a proxy, firewall, or in a restricted network environment where Parler cannot download models automatically, you can manually download and install them. The URLs are publicly accessible from any browser.
- Open Parler settings
- Navigate to the About section
- Copy the "App Data Directory" path shown there, or use the shortcuts:
- macOS:
Cmd+Shift+Dto open debug menu - Windows/Linux:
Ctrl+Shift+Dto open debug menu
- macOS:
The typical paths are:
- macOS:
~/Library/Application Support/com.pais.handy/ - Windows:
C:\Users\{username}\AppData\Roaming\com.pais.handy\ - Linux:
~/.config/com.pais.handy/
Inside your app data directory, create a models folder if it doesn't already exist:
# macOS/Linux
mkdir -p ~/Library/Application\ Support/com.pais.handy/models
# Windows (PowerShell)
New-Item -ItemType Directory -Force -Path "$env:APPDATA\com.pais.handy\models"Download the models you want from below
Whisper Models (single .bin files):
- Small (487 MB):
https://blob.handy.computer/ggml-small.bin - Medium (492 MB):
https://blob.handy.computer/whisper-medium-q4_1.bin - Turbo (1600 MB):
https://blob.handy.computer/ggml-large-v3-turbo.bin - Large (1100 MB):
https://blob.handy.computer/ggml-large-v3-q5_0.bin
Parakeet Models (compressed archives):
- V2 (473 MB):
https://blob.handy.computer/parakeet-v2-int8.tar.gz - V3 (478 MB):
https://blob.handy.computer/parakeet-v3-int8.tar.gz
For Whisper Models (.bin files):
Simply place the .bin file directly into the models directory:
{app_data_dir}/models/
├── ggml-small.bin
├── whisper-medium-q4_1.bin
├── ggml-large-v3-turbo.bin
└── ggml-large-v3-q5_0.bin
For Parakeet Models (.tar.gz archives):
- Extract the
.tar.gzfile - Place the extracted directory into the
modelsfolder - The directory must be named exactly as follows:
- Parakeet V2:
parakeet-tdt-0.6b-v2-int8 - Parakeet V3:
parakeet-tdt-0.6b-v3-int8
- Parakeet V2:
Final structure should look like:
{app_data_dir}/models/
├── parakeet-tdt-0.6b-v2-int8/ (directory with model files inside)
│ ├── (model files)
│ └── (config files)
└── parakeet-tdt-0.6b-v3-int8/ (directory with model files inside)
├── (model files)
└── (config files)
Important Notes:
- For Parakeet models, the extracted directory name must match exactly as shown above
- Do not rename the
.binfiles for Whisper models—use the exact filenames from the download URLs - After placing the files, restart Parler to detect the new models
- Restart Parler
- Open Settings → Models
- Your manually installed models should now appear as "Downloaded"
- Select the model you want to use and test transcription
Parler can auto-discover custom Whisper GGML models placed in the models directory. This is useful for users who want to use fine-tuned or community models not included in the default model list.
How to use:
- Obtain a Whisper model in GGML
.binformat (e.g., from Hugging Face) - Place the
.binfile in yourmodelsdirectory (see paths above) - Restart Parler to discover the new model
- The model will appear in the "Custom Models" section of the Models settings page
Important:
- Community models are user-provided and may not receive troubleshooting assistance
- The model must be a valid Whisper GGML format (
.binfile) - Model name is derived from the filename (e.g.,
my-custom-model.bin→ "My Custom Model")
MIT License - see LICENSE file for details.
- cjpais/Handy - the original project this fork is based on
- Whisper by OpenAI for the speech recognition model
- whisper.cpp and ggml for cross-platform whisper inference/acceleration
- Silero for lightweight VAD
- Tauri for the Rust-based app framework