Created
February 23, 2026 23:37
-
-
Save ericchansen/1efbd10b90802f5102ca23b5a72b04e3 to your computer and use it in GitHub Desktop.
My customized Oh My Posh clean-detailed theme
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", | |
| "pwd": "osc99", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "newline": true, | |
| "segments": [ | |
| { | |
| "background": "#FEF5ED", | |
| "foreground": "#011627", | |
| "leading_diamond": "\ue0b2", | |
| "options": { | |
| "macos": "\uf179 ", | |
| "ubuntu": "\uf31b ", | |
| "windows": "\ue62a " | |
| }, | |
| "style": "diamond", | |
| "template": " {{ if .WSL }}WSL at {{ end }}{{.Icon}}", | |
| "trailing_diamond": "<transparent,#FEF5ED>\ue0b2</>", | |
| "type": "os" | |
| }, | |
| { | |
| "background": "#FEF5ED", | |
| "foreground": "#011627", | |
| "leading_diamond": "\ue0b2", | |
| "style": "diamond", | |
| "template": "\uf489 {{ .Name }}", | |
| "trailing_diamond": "<transparent,#FEF5ED>\ue0b2</>", | |
| "type": "shell" | |
| }, | |
| { | |
| "background": "#516BEB", | |
| "foreground": "#ffffff", | |
| "leading_diamond": "\ue0b2", | |
| "style": "diamond", | |
| "template": "\ue266 MEM: {{ (div ((sub .PhysicalTotalMemory .PhysicalAvailableMemory)|float64) 1073741824.0) }}/{{ (div .PhysicalTotalMemory 1073741824.0) }}GB \ue266 ", | |
| "trailing_diamond": "<transparent,#516BEB>\ue0b2</>", | |
| "type": "sysinfo" | |
| }, | |
| { | |
| "background": "#575656", | |
| "foreground": "#d6deeb", | |
| "leading_diamond": "\ue0b2", | |
| "options": { | |
| "style": "roundrock", | |
| "threshold": 0 | |
| }, | |
| "style": "diamond", | |
| "template": " {{ .FormattedMs }} ", | |
| "trailing_diamond": "\ue0b0", | |
| "type": "executiontime" | |
| } | |
| ], | |
| "type": "prompt" | |
| }, | |
| { | |
| "alignment": "right", | |
| "segments": [ | |
| { | |
| "background": "#17D7A0", | |
| "foreground": "#011627", | |
| "leading_diamond": "\ue0b2", | |
| "options": { | |
| "branch_icon": "\ue725 ", | |
| "fetch_status": true, | |
| "fetch_upstream_icon": true | |
| }, | |
| "style": "diamond", | |
| "template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ", | |
| "trailing_diamond": "\ue0b0", | |
| "type": "git" | |
| } | |
| ], | |
| "type": "prompt" | |
| }, | |
| { | |
| "alignment": "left", | |
| "newline": true, | |
| "segments": [ | |
| { | |
| "style": "plain", | |
| "template": " \uf292 ", | |
| "type": "root" | |
| }, | |
| { | |
| "options": { | |
| "style": "short", | |
| "folder_separator_icon": "/", | |
| "home_icon": "~" | |
| }, | |
| "style": "plain", | |
| "template": " {{ .Path }} ", | |
| "type": "path" | |
| }, | |
| { | |
| "style": "plain", | |
| "template": "{{ $animals := list \"π±\" \"πΆ\" \"π¦\" \"πΈ\" \"π§\" \"π¦\" \"πΌ\" \"π\" \"π¦\" \"π’\" \"π¦\" \"π¬\" }}{{ index $animals (mod .CurrentDate.Second (len $animals)) }} ", | |
| "type": "time" | |
| }, | |
| { | |
| "options": { | |
| "always_enabled": true | |
| }, | |
| "style": "plain", | |
| "template": " ", | |
| "type": "status" | |
| } | |
| ], | |
| "type": "prompt" | |
| } | |
| ], | |
| "console_title_template": "{{ .Folder }}", | |
| "transient_prompt": { | |
| "background": "transparent", | |
| "foreground": "#FEF5ED", | |
| "template": "\ue285 " | |
| }, | |
| "version": 4 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment