An Ultra-Clean, Premium
Minimal Prompt Theme
A highly optimized multi-line layout featuring smart balanced folder depth truncation, cross-platform OS detection, and zero screen clutter.
Your branch is up to date with 'origin/main'.
nothing to commit, working tree clean
✨ Premium Features
Designed for power-users who value speed, accuracy, and clear terminal screens.
Minimal Footprint
Uses a distraction-free multi-line prompt ending in a single chevron. Out-of-the-box configuration for transient prompts hides previous command blocks on run.
Cross-Platform OS Icons
Built-in logic automatically queries the host operating system, displaying custom environment glyphs natively. Windows, macOS, Linux
Cross-Platform Slashes
Path directories dynamically render with native OS format separators (backslashes on Windows, forward slashes on macOS and Linux) automatically.
Balanced Directory Separation
Leverages custom properties with max_depth: 2 and an elegant ...
truncation system to ensure long paths remain clean and brief.
🚀 Installation Guide
Pick your preferred shell below to apply the PowerMini prompt theme.
-
1 Enable Oh My Posh in Clink
Open CMD and run the command to activate Oh My Posh as your active Clink prompt engine:
CMDclink config prompt use oh-my-posh -
2 Link the PowerMini Theme File
Set Clink to load your downloaded
powermini.omp.jsontheme file:CMDclink set ohmyposh.theme "C:\path\to\your\powermini.omp.json"💡 Replace the path with the absolute path to your downloaded JSON file.
-
1 Open your PowerShell Profile
Run this command inside PowerShell to open your profile script in Notepad:
PowerShellnotepad $PROFILE -
2 Add the Initialization Hook
Paste the following line at the bottom of the script file and save it:
PowerShell Profileoh-my-posh init pwsh --config "C:\path\to\your\powermini.omp.json" | Invoke-Expression💡 Ensure you update the path string to point to your local theme JSON file.
-
1 Inject into shell configuration
Depending on whether you use Bash or Zsh, append the setup line to your config file:
Bash / Zsh (~/.bashrc or ~/.zshrc)# For Bash: eval "$(oh-my-posh init bash --config /path/to/your/powermini.omp.json)" # For Zsh: eval "$(oh-my-posh init zsh --config /path/to/your/powermini.omp.json)" -
2 Source your changes
Run
source ~/.bashrcorsource ~/.zshrcto load the changes instantly.