mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
f47da9592f
BREAKING CHANGE: exit segment is now called status segment. The exit keyword is now deprecated and will be removed in a future release. Please use the status keyword instead: ```diff "segments": { { - "type": "exit" + "type": "status" } } ``` Additionally, the status segment configuration has changed to support $PIPESTATUS. You can include a status template to customize the rendering of each individual status code (supported in fish, zsh and bash). ```json "segments": { { "type": "status", "properties": { "status_template": "{{ if gt .Code 0 }}\uf071{{ else }}\uf00c{{ end }}", "status_separator": " " } } } ``` In case no $PIPESTATUS is available, the status segment will fall back to the exit code of the last command using the status template for rendering. The `{{ .Meaning }}` property has been marked as deprecated and can be replaced with `{{ reason .Code }}`, allowing it to be reused in cross segment templates. resolves #4070
101 lines
3.4 KiB
JSON
101 lines
3.4 KiB
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
|
|
"blocks": [
|
|
{
|
|
"alignment": "left",
|
|
"segments": [
|
|
{
|
|
"background": "#0C212F",
|
|
"foreground": "#FFFFFF",
|
|
"leading_diamond": "\ue0b6",
|
|
"style": "diamond",
|
|
"template": " {{ .Icon }} ",
|
|
"trailing_diamond": "\ue0b0",
|
|
"type": "os"
|
|
},
|
|
{
|
|
"background": "#DE2121",
|
|
"foreground": "#FFFFFF",
|
|
"leading_diamond": "<transparent,#DE2121>\ue0b0</>",
|
|
"style": "diamond",
|
|
"template": " \uf0e7 ",
|
|
"trailing_diamond": "\ue0b0",
|
|
"type": "root"
|
|
},
|
|
{
|
|
"background": "#26BDBB",
|
|
"foreground": "#0C212F",
|
|
"leading_diamond": "<transparent,#26BDBB>\ue0b0</>",
|
|
"properties": {
|
|
"folder_icon": "...",
|
|
"folder_separator_icon": "<transparent> \ue0b1 </>",
|
|
"home_icon": "\ueb06",
|
|
"style": "agnoster_short"
|
|
},
|
|
"style": "diamond",
|
|
"template": " {{ .Path }} ",
|
|
"trailing_diamond": "\ue0b0",
|
|
"type": "path"
|
|
},
|
|
{
|
|
"background": "#280C2E",
|
|
"background_templates": [
|
|
"{{ if or (.Working.Changed) (.Staging.Changed) }}#7621DE{{ end }}",
|
|
"{{ if and (gt .Ahead 0) (gt .Behind 0) }}#7621DE{{ end }}",
|
|
"{{ if gt .Ahead 0 }}#7621DE{{ end }}",
|
|
"{{ if gt .Behind 0 }}#7621DE{{ end }}"
|
|
],
|
|
"foreground": "#FFFFFF",
|
|
"powerline_symbol": "\ue0b0",
|
|
"properties": {
|
|
"fetch_stash_count": true,
|
|
"fetch_status": true,
|
|
"fetch_upstream_icon": true
|
|
},
|
|
"style": "powerline",
|
|
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
|
|
"type": "git"
|
|
},
|
|
{
|
|
"background": "#0C212F",
|
|
"foreground": "#FFFFFF",
|
|
"leading_diamond": "<transparent,#0C212F>\ue0b0</>",
|
|
"properties": {
|
|
"time_format": "15:04"
|
|
},
|
|
"style": "diamond",
|
|
"template": " {{ .CurrentDate | date .Format }} ",
|
|
"trailing_diamond": "\ue0b0",
|
|
"type": "time"
|
|
},
|
|
{
|
|
"background": "#26BDBB",
|
|
"foreground": "#0C212F",
|
|
"leading_diamond": "<transparent,#26BDBB>\ue0b0</>",
|
|
"properties": {
|
|
"style": "dallas",
|
|
"threshold": 0
|
|
},
|
|
"style": "diamond",
|
|
"template": " {{ .FormattedMs }}s ",
|
|
"trailing_diamond": "\ue0b0",
|
|
"type": "executiontime"
|
|
},
|
|
{
|
|
"background": "#910000",
|
|
"foreground": "#ffffff",
|
|
"leading_diamond": "<transparent,background>\ue0b0</>",
|
|
"style": "diamond",
|
|
"template": "<transparent> \uf12a</> {{ reason .Code }} ",
|
|
"trailing_diamond": "\ue0b0",
|
|
"type": "status"
|
|
}
|
|
],
|
|
"type": "prompt"
|
|
}
|
|
],
|
|
"console_title_template": "{{if .Root}} \u26a1 {{end}}{{.Folder | replace \"~\" \"🏠\"}} @ {{.HostName}}",
|
|
"final_space": true,
|
|
"version": 2
|
|
}
|