AI-powered text correction for macOS – Fix spelling, grammar, and style with a single shortcut
- System-wide shortcut – Works in any macOS app
- One-click correction – Select text, press shortcut, done
- OpenAI powered – Uses GPT-4 for intelligent corrections
- Clipboard-based – Seamless text replacement
- Configurable – Custom shortcuts and API keys
- Native Swift – Fast and lightweight MenuBar app
- macOS 13.0 or later
- OpenAI API key (Get one here)
- Xcode Command Line Tools:
xcode-select --install
# Clone the repository
git clone https://github.com/luisthieme/horus.git
cd horus
# Create config file
cp config.json.example config.json
# Edit config.json and add your OpenAI API key
# Build the app
./build.sh
# Copy config to app bundle
cp config.json Horus.app/Contents/Resources/
# Launch
open Horus.app- Open Horus.app
- macOS will ask for Accessibility permissions
- Go to System Settings → Privacy & Security → Accessibility
- Enable Horus
- Select any text in any application
- Press Cmd+Shift+K (default shortcut)
- Text is automatically corrected and replaced
Edit config.json:
{
"openai_api_key": "sk-your-api-key-here",
"shortcut": {
"key": "k",
"modifiers": ["command", "shift"]
}
}command(Cmd)shift(Shift)option(Option/Alt)control(Ctrl)
Any letter (a-z) or number (0-9)
See ICONS.md for instructions on creating custom app and menubar icons.
MIT License - feel free to use and modify
Contributions welcome! Open an issue or submit a pull request.
Note: This app requires your own OpenAI API key. Usage costs apply based on OpenAI's pricing.