A macOS menu bar utility that automatically presses Enter for you when you finish dictating (with Wispr Flow or similar).
When you hold a trigger key (default: Fn) to dictate, Dictation Enter detects the release and sends an Enter keypress after a configurable delay. This lets you dictate into text fields and chat apps without needing to manually confirm with Enter afterward.
- macOS 13.0 or later
- Accessibility permission (the app will prompt you on first launch)
Important
You need to run the app with extra permissions: After installing-- In Finder, navigate to Applications, Right-Click DictationEnter, and click Open. This is different from opening the app normally (i.e. via Spotlight Search), and Apple will give the app slightly more permissions when you do it this way. (permission/Gatekeeper issues)
Then, in System Preferences > Privacy and Security, at the bottom, allow the app to open despite being Unverified. Once the app is running, grant the requested system Accessibility permission.
Download the DMG from the latest release, open it, and drag Dictation Enter into Applications.
Once running, Dictation Enter appears as a 🎙️⏎ icon in your menu bar. Click it to:
- Enable/Disable the app
- Open Preferences to configure the trigger key, timing, and launch-at-login
By default, the trigger is the Fn key. You can change it to any key combination or a mouse button in Preferences.
The delay before Enter is pressed is controlled by three parameters:
- Base Wait Time -- minimum delay after releasing the trigger (for short presses).
- Threshold -- hold duration below which the base wait time applies.
- Scale -- for every N extra seconds of hold beyond the threshold, add 1 second of wait time.
For holds shorter than the threshold, the wait time equals the base wait time. For longer holds, the wait time increases proportionally.
The entire app is a single Swift file compiled with swiftc. Run the build script:
./build.sh
This will:
- Generate the app icon (if
AppIcon.icnsdoesn't exist) - Compile
DictationEnter.swift - Create the
.appbundle and ad-hoc code sign it - Generate the DMG background image (if
dmg_background.pngdoesn't exist) - Create a styled DMG installer at
DictationEnter.dmg
To force regeneration of the icon or DMG background, delete the respective file before running build.sh.
After building, create a GitHub release with the DMG attached:
gh release create v1.x DictationEnter.dmg --title "v1.x" --notes "Release notes here."
MIT
