Oh My Posh Visual Configurator β¨
π― What is Oh My Posh Configurator?
The Oh My Posh Visual Configurator is a modern, intuitive web application that lets you design and customize your terminal prompt visually. No more manual JSON editing or trial-and-error configurationβjust drag, drop, customize, and export!
Perfect for developers, DevOps engineers, and anyone who wants a beautiful, informative terminal prompt for PowerShell, Bash, Zsh, Fish, or any shell supported by Oh My Posh.
β¨ Features
- π¨ 103+ Segments: Browse comprehensive segment library organized in 8 categories with detailed properties and options
- π±οΈ Drag & Drop Interface: Intuitive visual editor with real-time updates
- β‘ Live Preview: See your prompt instantly with sample data and powerline/diamond styles
- ποΈ Full Customization: Configure colors, templates, styles, and alignment with inline documentation
- π Progressive Disclosure: Advanced features hidden by default with settings dialog to show/hide complexity as needed
- π― Smart Defaults: Auto-applied cache settings, intelligent feature detection on import
- π‘ Command Tooltips: Configure command-triggered custom prompts (e.g., show git status when typing
git)
- π Segment Documentation: Built-in properties and options reference for every segment
- π¦ Import & Export: Support for JSON, YAML, and TOML formats
- πΎ Auto-Save: Never lose your work with automatic browser storage
- π― Sample Configs: Start quickly with 6 pre-built professional templates
- π₯ Community Themes: Browse and share community-contributed configurations
- π€ Easy Sharing: Submit your own themes via GitHub PR with built-in tools
- π 100% Client-Side: Your configurations never leave your browser
- π± Responsive Design: Works on desktop, tablet, and mobile devices
- π¨ Smart Color Schemes: Category-based default colors for quick setup
- π€ MCP Server: Use AI assistants like Claude to create and manage configurations through natural language (Learn more)
ποΈ Segment Categories
- System: Path, OS, Shell, Session, Battery, Time, Execution Time, Status, and more
- Version Control: Git, Mercurial, SVN, Fossil, Plastic SCM, Sapling, Jujutsu
- Languages: Node.js, Python, Go, Rust, Java, .NET, PHP, Ruby, Swift, and 20+ more
- Cloud & Infrastructure: AWS, Azure, GCP, Kubernetes, Terraform, Docker, Pulumi
- CLI Tools: NPM, Yarn, PNPM, Angular, React, Flutter, and many more
- Web: IP Address, Weather, HTTP requests
- Music: Spotify, YouTube Music, Last.fm
- Health: Nightscout, Strava, Withings
π Getting Started
π Use Online (Recommended)
No installation required! Visit the hosted version:
π https://configurator.ohmyposh.dev/
π» Local Development
# Clone the repository
git clone https://github.com/jamesmontemagno/ohmyposh-configurator.git
cd ohmyposh-configurator
# Install dependencies
npm install
# Start development server
npm run dev
# Build for production (includes JSON minification)
npm run build
# Preview production build locally
npm run preview
π§ Development Scripts
npm run dev: Start Vite development server
npm run build: Build for production and minify all JSON assets
npm run build:mcp: Build the MCP server
npm run mcp: Run the MCP server
npm run preview: Serve the production build from dist/
npm run minify: Manually minify JSON files in the public/ directory
npm run format:json: Expand/format JSON files in public/ for easier editing
npm run validate: Validate all configuration files and manifests
npm run lint: Run ESLint check
npm run test: Run tests
π€ MCP Server (AI-Powered Configuration)
Want to create Oh My Posh configurations using natural language with AI assistants? The Oh My Posh Configurator includes a Model Context Protocol (MCP) server that works with VS Code and GitHub Copilot.

Quick Setup for VS Code:
-
Add to your workspace .vscode/mcp.json:
{
"servers": {
"ohmyposh-configurator": {
"type": "stdio",
"command": "node",
"args": ["/path/to/ohmyposh-configurator/dist/mcp/index.js"]
}
}
}
-
Build the MCP server:
-
Open GitHub Copilot Chat in VS Code and start creating prompts with AI!
Example Requests:
- "Create me a developer prompt with git and Python"
- "Add caching to all language segments"
- "Apply the Dracula color theme"
- "Help optimize my slow prompt"
π Full MCP Server Documentation
π Usage
Quick Start Guide
-
π― Choose a Starting Point
- Start from scratch, or
- Load a sample configuration, or
- Browse community themes, or
- Import your existing Oh My Posh config
-
β Add Segments
- Browse categories in the left sidebar
- Click segments to add them to your prompt
- Or drag them directly to desired positions
-
π¨ Customize
- Click any segment to edit properties
- Adjust colors, styles, and templates
- Configure powerline, diamond, or plain styles
-
π Preview
- See changes instantly in the preview panel
- Toggle between dark and light backgrounds
- View powerline arrows and diamond shapes
-
πΎ Export or Share
- Choose your format: JSON, YAML, or TOML
- Download and use with Oh My Posh
- Or share your creation with the community!
π€ Contributing Your Theme
Love your configuration? Share it with the community!
- Click the "Share" button in the header
- Fill in your theme details (name, description, author, tags)
- Select "Open Submission Issue" and submit the prefilled GitHub issue
- A maintainer reviews your theme and automatically generates a draft pull request when approved
- See your theme in the Community collection!
See CONTRIBUTING.md for detailed instructions.
π§ Using Your Configuration
After downloading your configuration file, follow the Oh My Posh installation guide to use it with your shell:
# PowerShell
oh-my-posh init pwsh --config ~/your-theme.json | Invoke-Expression
# Bash
eval "$(oh-my-posh init bash --config ~/your-theme.json)"
# Zsh
eval "$(oh-my-posh init zsh --config ~/your-theme.json)"
π οΈ Technology Stack
- βοΈ Framework: React 19 with TypeScript
- β‘ Build Tool: Vite 6.4
- π¨ Styling: Tailwind CSS 4.1
- π±οΈ Drag & Drop: @dnd-kit (sortable lists and cross-container support)
- πΎ State Management: Zustand with localStorage persistence
- π― Icons: Custom Nerd Font icon library (200+ icons) with unique IDs
- π Config Parsing: js-yaml, @iarna/toml
- π¦ Data Loading: Dynamic JSON-based lazy loading with request-deduplication and caching
β‘ Performance & Optimization
- JSON Minification: All JSON metadata and configuration files are automatically minified during the production build to reduce payload size.
- Smart Caching: The application implements a request-deduplication and caching layer for all JSON assets. Each file is fetched exactly once, even if requested by multiple components simultaneously.
- Lazy Loading: Segment metadata is loaded on-demand by category, keeping the initial bundle size small.
ποΈ Project Structure