-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoh-my-posh-theme.json.bak
156 lines (156 loc) · 4.16 KB
/
oh-my-posh-theme.json.bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
"version": 2,
"final_space": true,
"console_title_template": "{{if .Root}}root :: {{end}}{{.Shell}} :: {{.Folder}}",
"palette": {
"rosewater": "#f5e0dc",
"flamingo": "#f2cdcd",
"pink": "#f5c2e7",
"mauve": "#cba6f7",
"red": "#f38ba8",
"maroon": "#eba0ac",
"peach": "#fab387",
"yellow": "#f9e2af",
"green": "#a6e3a1",
"teal": "#94e2d5",
"sky": "#89dceb",
"sapphire": "#74c7ec",
"blue": "#89B4FA",
"lavender": "#B4BEFE",
"text": "#cdd6f4",
"base": "#1e1e2e",
"prompt": "p:green",
"closer": "p:prompt",
"os": "p:blue",
"root": "#ffff66",
"path": "#94e2d5",
"folder": "p:path",
"git-foreground": "#a6e3a1",
"git-modified": "#cba6f7",
"git-diverged": "#f2cdcd",
"git-ahead": "#f2cdcd",
"git-behind": "#f2cdcd",
"node": "#74c7ec",
"dotnet": "p:node",
"executiontime": "p:maroon",
"error": "p:red"
},
"blocks": [
{
"type": "prompt",
"alignment": "left",
"segments": [
{
"type": "status",
"style": "plain",
"foreground": "p:prompt",
"foreground_templates": ["{{ if gt .Code 0 }}p:error{{ end }}"],
"template": "{{ if .Error }}[\uebfb]: {{ .Code }}{{ else }}[\u2192]{{ end }}",
"properties": {
"always_enabled": true
}
},
{
"type": "os",
"style": "diamond",
"foreground": "p:os",
"properties": {
"alpine": "\uf300",
"arch": "\uf303",
"centos": "\uf304",
"debian": "\uf306",
"elementary": "\uf309",
"fedora": "\uf30a",
"gentoo": "\uf30d",
"linux": "\ue712",
"macos": "\ue711",
"manjaro": "\uf312",
"mint": "\uf30f",
"opensuse": "\uf314",
"raspbian": "\uf315",
"ubuntu": "\uf31c",
"windows": "\ue70f"
}
},
{
"type": "session",
"style": "diamond",
"foreground": "p:blue",
"template": " {{ if .SSHSession }}\udb82\udcc0 {{ end }}{{ .UserName }}@{{ .HostName }} "
},
{
"type": "root",
"style": "diamond",
"foreground": "p:blue"
},
{
"type": "path",
"style": "diamond",
"foreground": "p:path",
"properties": {
"folder_icon": "<p:folder> \ue5fe </>",
"style": "agnoster"
}
},
{
"type": "git",
"style": "diamond",
"foreground": "p:git-foreground",
"foreground_templates": [
"{{ if or (.Working.Changed) (.Staging.Changed) }}p:git-modified{{ end }}",
"{{ if gt .Ahead 0 }}p:git-ahead{{ end }}",
"{{ if gt .Behind 0 }}p:git-behind{{ end }}"
],
"properties": {
"fetch_stash_count": true,
"fetch_status": true,
"fetch_upstream_icon": true
}
},
{
"type": "node",
"style": "plain",
"foreground": "p:node",
"template": "\ue781 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}",
"properties": {
"fetch_version": true
}
},
{
"type": "dotnet",
"style": "diamond",
"foreground": "p:dotnet"
},
{
"type": "rust",
"style": "powerline",
"foreground": "p:red",
"template": " {{ .Full }}"
},
{
"type": "executiontime",
"style": "plain",
"foreground": "p:executiontime",
"properties": {
"style": "roundrock",
"threshold": 500
}
}
]
},
{
"alignment": "left",
"newline": true,
"segments": [
{
"style": "plain",
"foreground": "p:closer",
"template": " <#f5c2e7>\udb81\ude27</>",
"type": "text"
}
],
"type": "prompt"
}
]
}