Convert text typed in the wrong keyboard layout — Hebrew ↔ English.
A tiny, portable Windows app (single .exe, no dependencies) that converts selected text between Hebrew and English keyboard layouts. Also available as MSIX for Microsoft Store and sideloading.
Example: asdf → שדגכ | שדגכ → asdf
| Format | x64 | x86 |
|---|---|---|
| Microsoft Store | ||
| Standalone EXE (no install) | langover-x64.exe |
langover-x86.exe |
| MSIX (Store / sideload) | langover-x64.msix |
langover-x86.msix |
All release binaries are signed with Sigstore and include GitHub artifact attestations. SignPath.io code signing is pending approval.
- Run
langover.exe— it sits quietly in your system tray - Select the text that was typed in the wrong layout
- Middle-click (press the mouse wheel) — the text is converted instantly
That's it. No installation, no setup, no admin rights needed.
LangOver is careful not to interfere with normal middle-click behavior:
| Scenario | What happens |
|---|---|
| Text is selected + quick middle-click | ✅ Text is converted |
| No text selected + middle-click | ↪ Normal behavior (paste in terminal, auto-scroll, etc.) |
| Middle-click + drag | ↪ Normal behavior (auto-scroll) |
| Middle-click held > 400ms | ↪ Normal behavior (auto-scroll) |
- Press
Win+R, typeshell:startup, press Enter - Create a shortcut to
langover.exein the folder that opens
Right-click the tray icon → Exit
- CMake 3.15+
- MSVC (Visual Studio 2019+) or MinGW-w64
cmake -B build -G "Visual Studio 17 2022" -A x64
cmake --build build --config ReleaseThe output is build/Release/langover.exe — a single, self-contained executable with no runtime dependencies.
├── src/
│ ├── langover.c # Main source (Win32 C)
│ ├── langover.rc # Resources (icon, version info)
│ ├── langover.exe.manifest # App manifest (DPI, UAC, compat)
│ ├── langover.ico # Application icon
│ └── resource.h # Resource IDs
├── msix/
│ ├── AppxManifest.xml # MSIX package manifest (Desktop Bridge)
│ └── Assets/ # Store tile logos (various sizes)
├── store/
│ ├── screenshots/ # Store screenshots (1920×1080)
│ ├── en-us/ # English store listing text
│ ├── he/ # Hebrew store listing text
│ └── listing.json # Store submission metadata
├── autohotkey/ # Alternative lightweight AHK version
│ ├── langover.ahk
│ └── README.md
├── scripts/
│ └── generate-store-assets.ps1 # Regenerate logos & screenshots
├── docs/ # GitHub Pages site (Hebrew)
├── .github/workflows/build.yml # CI: build EXE+MSIX, sign, release
├── .signpath/ # SignPath code signing config
├── CMakeLists.txt # Build system
├── LICENSE # MIT License
└── SECURITY.md # Security policy
- A low-level mouse hook detects middle-click events
- On a quick middle-click, the app copies the selected text via
Ctrl+C - Each character is mapped to its counterpart based on the physical keyboard position
- The converted text replaces the selection via
Ctrl+V - The original clipboard content is preserved throughout
The app auto-detects the text direction: if Hebrew characters are found, it converts to English; otherwise, it converts to Hebrew.
Every release binary can be independently verified:
# Install cosign: https://docs.sigstore.dev/cosign/system_config/installation/
cosign verify-blob \
--signature langover-x64.exe.sig \
--certificate langover-x64.exe.pem \
--certificate-oidc-issuer https://token.actions.githubusercontent.com \
--certificate-identity-regexp "github.com/nachlib/LangOver" \
langover-x64.exegh attestation verify langover-x64.exe -o nachlibEach release includes .sha256 files for manual hash verification.
Contributions are welcome! Please open an issue or submit a pull request.