Created
February 9, 2022 02:03
-
-
Save Tjlastnumber/2f1451c5d45167f18720d3c842195bae to your computer and use it in GitHub Desktop.
oh-my-posh 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", | |
| "blocks": [ | |
| { | |
| "alignment": "left", | |
| "segments": [ | |
| { | |
| "foreground": "#3A86FF", | |
| "properties": { | |
| "template": "{{ if .WSL }}WSL at {{ end }}{{.Icon}} " | |
| }, | |
| "style": "plain", | |
| "type": "os" | |
| }, | |
| { | |
| "background": "#242424", | |
| "foreground": "#f1184c", | |
| "powerline_symbol": "\ue0b0", | |
| "properties": { | |
| "template": " {{ .UserName }}" | |
| }, | |
| "style": "powerline", | |
| "type": "session" | |
| }, | |
| { | |
| "background": "#242424", | |
| "foreground": "#f1184c", | |
| "powerline_symbol": "\ue0b0", | |
| "properties": { | |
| "template": "- root \uf0e7" | |
| }, | |
| "style": "powerline", | |
| "type": "root" | |
| }, | |
| { | |
| "background": "#242424", | |
| "foreground": "#FFBB00", | |
| "powerline_symbol": "\ue0b0", | |
| "properties": { | |
| "template": "{{ .CurrentDate | date .Format }} ", | |
| "time_format": "15:04:05" | |
| }, | |
| "style": "powerline", | |
| "type": "time" | |
| }, | |
| { | |
| "background": "#242424", | |
| "foreground": "#33DD2D", | |
| "powerline_symbol": "\ue0b0", | |
| "properties": { | |
| "folder_separator_icon": "/", | |
| "style": "full", | |
| "template": "\ue5ff {{ .Path }} " | |
| }, | |
| "style": "powerline", | |
| "type": "path" | |
| }, | |
| { | |
| "background": "#d2ff5e", | |
| "foreground": "#193549", | |
| "background_templates": [ | |
| "{{ if or (.Working.Changed) (.Staging.Changed) }}#ff9248{{ end }}", | |
| "{{ if and (gt .Ahead 0) (gt .Behind 0) }}#f26d50{{ end }}", | |
| "{{ if gt .Ahead 0 }}#33DD2D{{ end }}", | |
| "{{ if gt .Behind 0 }}#f17c37{{ end }}" | |
| ], | |
| "powerline_symbol": "\ue0b0", | |
| "properties": { | |
| "branch_icon": "\ue725 ", | |
| "fetch_stash_count": true, | |
| "fetch_status": true, | |
| "fetch_upstream_icon": true, | |
| "fetch_worktree_count": true, | |
| "template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ .BranchStatus }}{{ 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 }} \uf692 {{ .StashCount }}{{ end }} " | |
| }, | |
| "style": "powerline", | |
| "type": "git" | |
| }, | |
| { | |
| "background": "#33DD2D", | |
| "background_templates": [ | |
| "{{ if gt .Code 0 }}#f1184c{{ end }}" | |
| ], | |
| "foreground": "#242424", | |
| "powerline_symbol": "\ue0b0", | |
| "properties": { | |
| "always_enabled": true, | |
| "template": " \ufc8d " | |
| }, | |
| "style": "powerline", | |
| "type": "exit" | |
| } | |
| ], | |
| "type": "prompt" | |
| }, | |
| { | |
| "alignment": "left", | |
| "newline": true, | |
| "segments": [ | |
| { | |
| "foreground": "#f1184c", | |
| "properties": { | |
| "template": "\u279c " | |
| }, | |
| "style": "plain", | |
| "type": "text" | |
| } | |
| ], | |
| "type": "prompt" | |
| } | |
| ], | |
| "version": 1 | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment