Community patch adds RTL language support to Claude Desktop on Windows

What this patch fixes
Claude Desktop currently has no native RTL support, causing Hebrew, Arabic, and other right-to-left languages to render completely broken. The issues include text starting from the wrong side, mixed LTR/RTL content appearing jumbled, and the input box not respecting text direction at all.
How the patch works
This is a workaround patch built using Claude Code throughout the development process. The developer used Claude Code to help with ASAR manipulation logic, RTL detection algorithm implementation, and debugging the Electron renderer injection.
The patch specifically:
- Injects a JavaScript snippet into Claude's renderer that auto-detects RTL text and applies the correct direction
- Keeps code blocks strictly LTR to prevent broken formatting
- Works on both the response area and the input box
- Creates full backups of all modified files before making changes, with a one-click restore option
Technical implementation details
Claude Desktop is Electron-based. The patch:
- Extracts app.asar
- Injects the RTL logic into the renderer JavaScript
- Repacks the ASAR file
- Updates the ASAR hash hardcoded in claude.exe
- Swaps the certificate in cowork-svc.exe to keep integrity checks functional
Installation
Installation is done via PowerShell with this command:
irm https://raw.githubusercontent.com/shraga100/claude-desktop-rtl-patch/main/install.ps1 | iexThe patch is completely free and the repository is available at: https://github.com/shraga100/claude-desktop-rtl-patch
Current limitations and future
The developer notes this is a workaround until Anthropic adds native RTL support. The RTL detection isn't perfect yet, and pull requests are open for improvements. The full technical explanation is available in the repository's README.
📖 Read the full source: r/ClaudeAI
👀 See Also

BetterClaw vs OpenClaw: Comparing Tool Calling, Structured Outputs, and Workflow Control
A developer-focused comparison of BetterClaw and OpenClaw covering tool calling, structured outputs, workflow control, and day-to-day agent development.

claude-sessions: Terminal UI for Browsing Claude Code Transcripts
claude-sessions is an open-source terminal UI tool that scans local Claude Code transcript files, allowing developers to browse, search, and resume past sessions. Built with Claude Code itself, it features WASD navigation, keyword search, and one-click session resumption.

Building a Local Open-Source AI Workspace with Rust and Tauri
Explore a fully local, open-source AI workspace built using Rust, Tauri, and sqlite-vec, without a Python backend.

Ouroboros 0.26.0-beta Combines Claude and Codex via MCP Server
Ouroboros 0.26.0-beta introduces a harness that runs Claude and Codex simultaneously, assigning Claude to clarify user intent and Codex to execute well-defined tasks via an MCP server architecture.