Created
October 7, 2024 15:17
-
-
Save TheNPCFISH/373894fb27f9b0e1f955347301851c3d to your computer and use it in GitHub Desktop.
My oh-my-posh theme. Inspired by cattpuccin and kali
This file contains 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", | |
"version": 2, | |
"final_space": true, | |
"blocks": [ | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ | |
"type": "text", | |
"style": "plain", | |
"template": "\u256d\u2500\u2500 ", | |
"foreground": "p:blue" | |
}, | |
{ | |
"type": "os", | |
"style": "plain", | |
"template": "{{.Icon}} ", | |
"foreground": "p:os" | |
}, | |
{ | |
"type": "session", | |
"style": "plain", | |
"template": "{{ .UserName }}@{{ .HostName }} ", | |
"foreground": "p:blue" | |
}, | |
{ | |
"type": "path", | |
"style": "plain", | |
"template": "{{ .Path }} ", | |
"properties": { | |
"folder_icon": "..\ue5fe..", | |
"home_icon": "~", | |
"style": "agnoster_short" | |
}, | |
"foreground": "p:pink" | |
}, | |
{ | |
"type": "git", | |
"style": "plain", | |
"template": "{{ .HEAD }} ", | |
"properties": { | |
"branch_icon": "\ue725 ", | |
"cherry_pick_icon": "\ue29b ", | |
"commit_icon": "\uf417 ", | |
"fetch_status": false, | |
"fetch_upstream_icon": false, | |
"merge_icon": "\ue727 ", | |
"no_commits_icon": "\uf0c3 ", | |
"rebase_icon": "\ue728 ", | |
"revert_icon": "\uf0e2 ", | |
"tag_icon": "\uf412 " | |
}, | |
"foreground": "p:lavender" | |
} | |
] | |
}, | |
{ | |
"type": "prompt", | |
"alignment": "left", | |
"segments": [ | |
{ | |
"type": "text", | |
"style": "plain", | |
"template": "\u2570\u2500\u2500 ", | |
"foreground": "p:blue" | |
}, | |
{ | |
"type": "text", | |
"style": "plain", | |
"template": "\uf105", | |
"foreground": "p:closer" | |
} | |
], | |
"newline": true | |
} | |
], | |
"palette": { | |
"blue": "#89B4FA", | |
"closer": "p:os", | |
"lavender": "#B4BEFE", | |
"os": "#ACB0BE", | |
"pink": "#F5C2E7" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment