Created
February 26, 2026 23:43
-
-
Save RelativisticMechanic/a6ad6b3dd9ce3e5e2a8c5f0b94c27b65 to your computer and use it in GitHub Desktop.
A minimalist theme for oh-my-posh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json", | |
| "blocks": [ | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "type": "os", | |
| "style": "plain", | |
| "foreground": "#54aef8", | |
| "template": " {{ .Icon }} " | |
| }, | |
| { | |
| "type": "text", | |
| "style": "plain", | |
| "foreground": "#89caff", | |
| "template": " {{ .UserName }}\uf1fa{{ .HostName }} " | |
| }, | |
| { | |
| "properties": { | |
| "cache_duration": "none", | |
| "style": "full" | |
| }, | |
| "template": " \udb80\ude4b {{ .Path }} ", | |
| "foreground": "#208de6", | |
| "type": "path", | |
| "style": "plain" | |
| }, | |
| { | |
| "properties": { | |
| "cache_duration": "none", | |
| "display_mode": "context" | |
| }, | |
| "template": " \ue235 {{ .Venv }} ", | |
| "foreground": "#43e44e", | |
| "type": "python", | |
| "style": "plain" | |
| }, | |
| { | |
| "properties": { | |
| "cache_duration": "none" | |
| }, | |
| "template": " \ue0a0 {{ .HEAD }}{{ if .Working.Changed }} *{{ end }} ", | |
| "foreground": "#f5732d", | |
| "type": "git", | |
| "style": "plain" | |
| }, | |
| { | |
| "properties": { | |
| "cache_duration": "none" | |
| }, | |
| "template": " * ", | |
| "type": "status", | |
| "style": "plain", | |
| "foreground_templates": [ | |
| "{{ if eq .Code 0 }}#00FF88{{ else }}#FF4C4C{{ end }}" | |
| ] | |
| } | |
| ] | |
| }, | |
| { | |
| "type": "prompt", | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "properties": { | |
| "cache_duration": "none" | |
| }, | |
| "template": " \uf111 ", | |
| "foreground": "#FFFFFF", | |
| "type": "text", | |
| "style": "plain" | |
| } | |
| ], | |
| "newline": true | |
| } | |
| ], | |
| "version": 3, | |
| "final_space": true | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment