Skip to content

kitlangton/Hex

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

67 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Hex — Voice → Text

Press-and-hold a hotkey to transcribe your voice and paste the result wherever you're typing.

Download Hex for macOS

Note: Hex is currently only available for Apple Silicon Macs.

I've opened-sourced the project in the hopes that others will find it useful! We rely on the awesome WhisperKit for transcription, and the incredible Swift Composable Architecture for structuring the app. Please open issues with any questions or feedback! ❤️

Join our Discord community for support, discussions, and updates!

Instructions

Once you open Hex, you'll need to grant it microphone and accessibility permissions—so it can record your voice and paste the transcribed text into any application, respectively.

Once you've configured a global hotkey, there are two recording modes:

  1. Press-and-hold the hotkey to begin recording, say whatever you want, and then release the hotkey to start the transcription process.
  2. Double-tap the hotkey to lock recording, say whatever you want, and then tap the hotkey once more to start the transcription process.

Project Structure

Hex is organized into several directories, each serving a specific purpose:

  • App/

    • Contains the main application entry point (HexApp.swift) and the app delegate (HexAppDelegate.swift), which manage the app's lifecycle and initial setup.
  • Clients/

    • PasteboardClient.swift
      • Manages pasteboard operations for copying transcriptions.
    • SoundEffect.swift
      • Controls sound effects for user feedback.
    • RecordingClient.swift
      • Manages audio recording and microphone access.
    • KeyEventMonitorClient.swift
      • Monitors global key events for hotkey detection.
    • TranscriptionClient.swift
      • Interfaces with WhisperKit for transcription services.
  • Features/

    • AppFeature.swift
      • The root feature that composes transcription, settings, and history.
    • TranscriptionFeature.swift
      • Manages the core transcription logic and recording flow.
    • SettingsFeature.swift
      • Handles app settings, including hotkey configuration and permissions.
    • HistoryFeature.swift
      • Manages the transcription history view.
  • Models/

    • HexSettings.swift
      • Stores user preferences like hotkey settings and sound preferences.
    • HotKey.swift
      • Represents the hotkey configuration.
  • Resources/

    • Contains the app's assets, including the app icon and sound effects.
    • changelog.md
      • A log of changes to the app.
    • Data/languages.json
      • A list of supported languages for transcription.
    • Audio/
      • Sound effects for user feedback.