Skip to content

Commit fdd45a9

Browse files
committed
feat: Add EssentialBold theme for Oh My Posh in PowerShell
1 parent 4aee199 commit fdd45a9

1 file changed

Lines changed: 73 additions & 0 deletions

File tree

Lines changed: 73 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
3+
"version": 2,
4+
"final_space": true,
5+
"shell_integration": true,
6+
"blocks": [
7+
{
8+
"type": "prompt",
9+
"alignment": "left",
10+
"segments": [
11+
{
12+
"type": "root",
13+
"style": "powerline",
14+
"foreground": "#ffffff",
15+
"background": "#000000",
16+
"template": "",
17+
"powerline_symbol": ""
18+
},
19+
{
20+
"type": "executiontime",
21+
"style": "powerline",
22+
"foreground": "#ffffff",
23+
"background": "#ff7d00",
24+
"template": " {{ .FormattedMs }} ",
25+
"powerline_symbol": ""
26+
},
27+
{
28+
"type": "status",
29+
"style": "powerline",
30+
"foreground": "#ffffff",
31+
"background": "#ad0a23",
32+
"template": " {{ .String }} ",
33+
"powerline_symbol": ""
34+
},
35+
{
36+
"type": "path",
37+
"style": "powerline",
38+
"foreground": "#ffffff",
39+
"background": "#0078D4",
40+
"template": " {{ .Path }} ",
41+
"powerline_symbol": "",
42+
"options": {
43+
"style": "folder"
44+
}
45+
},
46+
{
47+
"type": "git",
48+
"style": "powerline",
49+
"foreground": "#ffffff",
50+
"background": "#386f11",
51+
"template": " {{ .HEAD }}{{ if .BranchStatus }} {{ .BranchStatus }}{{ end }} ",
52+
"powerline_symbol": ""
53+
}
54+
]
55+
},
56+
{
57+
"type": "prompt",
58+
"alignment": "left",
59+
"newline": true,
60+
"trailing_diamond": "",
61+
"segments": [
62+
{
63+
"type": "az",
64+
"style": "plain",
65+
"foreground": "#ffffff",
66+
"background": "#000000",
67+
"template": " {{ .Name }} ",
68+
"powerline_symbol": ""
69+
}
70+
]
71+
}
72+
]
73+
}

0 commit comments

Comments
 (0)