Skip to content

Instantly share code, notes, and snippets.

@treckstar
Last active May 18, 2023 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save treckstar/175547806360c7f2c81cc961ad8037f1 to your computer and use it in GitHub Desktop.
Save treckstar/175547806360c7f2c81cc961ad8037f1 to your computer and use it in GitHub Desktop.
Oh My Posh Theme
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://gist.githubusercontent.com/treckstar/175547806360c7f2c81cc961ad8037f1/raw/treckstar.omp.json",
"type": "object",
"title": "The Oh My Posh theme definition",
"description": "https://ohmyposh.dev/docs/configuration/overview",
"definitions": {
"color": {
"anyOf": [
{
"$ref": "#/definitions/color_string"
},
{
"$ref": "#/definitions/palette_reference"
}
]
},
"color_string": {
"type": "string",
"pattern": "^(#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})|^([0-9]|[1-9][0-9]|1[0-9][0-9]|2[0-4][0-9]|25[0-5])$|black|red|green|yellow|blue|magenta|cyan|white|default|darkGray|lightRed|lightGreen|lightYellow|lightBlue|lightMagenta|lightCyan|lightWhite|transparent|parentBackground|parentForeground|background|foreground|accent)$",
"title": "Color string",
"description": "https://ohmyposh.dev/docs/configuration/colors",
"format": "color"
},
"palette_reference": {
"type": "string",
"pattern": "^p:.*$",
"title": "Palette reference",
"description": "https://ohmyposh.dev/docs/configuration/colors#palette"
},
"templates": {
"type": "array",
"title": "An array of templates",
"default": [],
"items": {
"$ref": "#/definitions/segment/properties/template"
}
},
"home_enabled": {
"type": "boolean",
"title": "Enable in the HOME folder",
"description": "Display the segment in the HOME folder",
"default": false
},
"fetch_version": {
"type": "boolean",
"title": "Fetch Version",
"description": "Fetch the version number",
"default": true
},
"http_timeout": {
"type": "integer",
"title": "Http request timeout",
"description": "Milliseconds to use for http request timeouts",
"default": 20
},
"cache_timeout": {
"type": "integer",
"title": "cache timeout",
"description": "Minutes the response is cached. A value of 0 disables the cache.",
"default": 10
},
"expires_in": {
"type": "integer",
"title": "Expires in",
"description": "Access token expiration time in seconds",
"default": 0
},
"access_token": {
"type": "string",
"title": "Access token",
"description": "The initial access token",
"default": ""
},
"refresh_token": {
"type": "string",
"title": "Refresh token",
"description": "The initial refresh token",
"default": ""
},
"display_mode": {
"type": "string",
"title": "Display Mode",
"description": "Determines whether the segment is displayed always or only if a file matching the extensions are present in the current folder",
"enum": [
"always",
"files",
"environment",
"context"
],
"default": "context"
},
"missing_command_text": {
"type": "string",
"title": "Missing command text",
"description": "The string to display when the command is not available",
"default": ""
},
"version_url_template": {
"type": "string",
"title": "Version Url Template",
"description": "Template that creates the URL of the version info / release notes",
"default": ""
},
"extra_prompt": {
"type": "object",
"default": {},
"properties": {
"template": {
"type": "string",
"title": "Prompt Template"
},
"foreground": {
"$ref": "#/definitions/color"
},
"foreground_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
},
"background": {
"$ref": "#/definitions/color"
},
"background_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
}
}
},
"block": {
"type": "object",
"description": "https://ohmyposh.dev/docs/configuration/block",
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "prompt"
}
}
},
"then": {
"required": [
"type",
"alignment",
"segments"
],
"title": "Prompt definition, contains 1 or more segments to render"
}
},
{
"if": {
"properties": {
"type": {
"const": "rprompt"
}
}
},
"then": {
"required": [
"type",
"segments"
],
"title": "RPrompt definition, contains 1 or more segments to render to the right of the cursor"
}
},
{
"if": {
"properties": {
"type": {
"const": "prompt"
},
"alignment": {
"const": "right"
}
}
},
"then": {
"properties": {
"overflow": {
"type": "string",
"title": "Block overflow",
"description": "https://ohmyposh.dev/docs/configuration/block#overflow",
"enum": [
"break",
"hide"
],
"default": ""
}
}
}
}
],
"properties": {
"type": {
"type": "string",
"title": "Block type",
"description": "https://ohmyposh.dev/docs/configuration/block#type",
"enum": [
"prompt",
"rprompt"
],
"default": "prompt"
},
"alignment": {
"type": "string",
"title": "Block alignment",
"description": "https://ohmyposh.dev/docs/configuration/block#alignment",
"enum": [
"left",
"right"
],
"default": "left"
},
"newline": {
"type": "boolean",
"title": "Newline",
"description": "https://ohmyposh.dev/docs/configuration/block#newline",
"default": false
},
"segments": {
"type": "array",
"title": "Segments list, prompt elements to display based on context",
"description": "https://ohmyposh.dev/docs/configuration/block#segments",
"default": [],
"items": {
"$ref": "#/definitions/segment"
}
}
}
},
"segment": {
"type": "object",
"title": "A segment",
"description": "https://ohmyposh.dev/docs/configuration/segment",
"default": {},
"required": [
"type",
"style"
],
"properties": {
"type": {
"type": "string",
"title": "Segment Type",
"description": "https://ohmyposh.dev/docs/configuration/segment#type",
"enum": [
"az",
"aws",
"azfunc",
"angular",
"battery",
"command",
"connection",
"crystal",
"cds",
"cf",
"cftarget",
"cmake",
"docker",
"dotnet",
"dart",
"exit",
"executiontime",
"flutter",
"fossil",
"gcp",
"git",
"gitversion",
"go",
"haskell",
"ipify",
"iterm",
"julia",
"java",
"kotlin",
"kubectl",
"lua",
"mercurial",
"node",
"npm",
"nx",
"os",
"owm",
"path",
"perl",
"python",
"php",
"plastic",
"project",
"root",
"ruby",
"rust",
"r",
"sapling",
"session",
"spotify",
"shell",
"sysinfo",
"strava",
"svn",
"swift",
"time",
"text",
"terraform",
"ui5tooling",
"unity",
"wakatime",
"winreg",
"withings",
"xmake",
"ytm"
]
},
"style": {
"title": "Segment Style",
"description": "https://ohmyposh.dev/docs/configuration/segment#style",
"anyOf": [
{
"enum": [
"plain",
"powerline",
"diamond",
"accordion"
]
},
{
"type": "string"
}
]
},
"foreground": {
"$ref": "#/definitions/color"
},
"foreground_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
},
"background": {
"$ref": "#/definitions/color"
},
"background_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
},
"template": {
"type": "string",
"title": "Template text",
"description": "https://ohmyposh.dev/docs/configuration/templates",
"default": ""
},
"templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/segment#templates"
},
"templates_logic": {
"type": "string",
"title": "Templates Logic",
"description": "https://ohmyposh.dev/docs/configuration/segment#templates",
"enum": [
"first_match",
"join"
]
},
"max_cols": {
"type": "integer",
"title": "if the terminal width exceeds this value, the segment will be hidden",
"description": "https://ohmyposh.dev/docs/configuration/segment#max_cols",
"default": 0
},
"min_cols": {
"type": "integer",
"title": "if the terminal width is inferior than this value, the segment will be hidden",
"description": "https://ohmyposh.dev/docs/configuration/segment#min_cols",
"default": 0
},
"properties": {
"type": "object",
"title": "Segment Properties, used to change behavior/displaying",
"description": "https://ohmyposh.dev/docs/configuration/segment#properties",
"default": {},
"properties": {
"include_folders": {
"type": "array",
"title": "If specified, segment will only render in these folders",
"description": "https://ohmyposh.dev/docs/configuration/segment#include--exclude-folders",
"default": [],
"items": {
"type": "string"
}
},
"exclude_folders": {
"type": "array",
"title": "Exclude rendering in these folders",
"description": "https://ohmyposh.dev/docs/configuration/segment#include--exclude-folders",
"default": [],
"items": {
"type": "string"
}
},
"ignore_folders": {
"type": "array",
"title": "Deprecated - please use `exclude_folders` instead",
"description": "https://ohmyposh.dev/docs/configuration/segment#include--exclude-folders",
"default": [],
"items": {
"type": "string"
},
"deprecated": true
}
}
},
"interactive": {
"type": "boolean",
"title": "Allow the use of interactive prompt escape sequences",
"description": "https://ohmyposh.dev/docs/configuration/segment#interactive",
"default": false
},
"alias": {
"type": "string",
"title": "Give the segment an alias for use in templates",
"description": "https://ohmyposh.dev/docs/configuration/segment#alias",
"default": ""
}
},
"allOf": [
{
"if": {
"properties": {
"type": {
"const": "project"
}
}
},
"then": {
"title": "Project Segment",
"description": "https://ohmyposh.dev/docs/project"
}
},
{
"if": {
"properties": {
"type": {
"const": "npm"
}
}
},
"then": {
"title": "NPM Segment",
"description": "https://ohmyposh.dev/docs/npm",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"style": {
"const": "powerline"
}
}
},
"then": {
"properties": {
"powerline_symbol": {
"type": "string",
"title": "Powerline Symbol",
"description": "https://ohmyposh.dev/docs/configuration/segment#powerline-symbol",
"default": "\uE0B0"
},
"invert_powerline": {
"type": "boolean",
"title": "Flip the Powerline symbol vertically",
"description": "https://ohmyposh.dev/docs/configuration/segment#invert-powerline",
"default": false
}
}
}
},
{
"if": {
"properties": {
"style": {
"const": "diamond"
}
}
},
"then": {
"properties": {
"leading_diamond": {
"type": "string",
"title": "Leading diamond",
"description": "https://ohmyposh.dev/docs/configuration/segment#leading-diamond",
"default": ""
},
"trailing_diamond": {
"type": "string",
"title": "Trailing diamond",
"description": "https://ohmyposh.dev/docs/configuration/segment#trailing-diamond",
"default": ""
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "az"
}
}
},
"then": {
"title": "Azure Segment",
"description": "https://ohmyposh.dev/docs/az",
"properties": {
"properties": {
"properties": {
"source": {
"type": "string",
"title": "Source",
"description": "https://ohmyposh.dev/docs/az#properties",
"default": "first_match",
"enum": [
"first_match",
"cli",
"pwsh"
]
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "battery"
}
}
},
"then": {
"title": "Battery Segment",
"description": "https://ohmyposh.dev/docs/segments/battery",
"properties": {
"properties": {
"properties": {
"display_error": {
"type": "boolean",
"title": "Display Error",
"description": "Show the error context when failing to retrieve the battery information",
"default": false
},
"charging_icon": {
"type": "string",
"title": "Charging Icon",
"description": "Text/icon to display when charging",
"default": ""
},
"discharging_icon": {
"type": "string",
"title": "discharging Dcon",
"description": "Text/icon to display when discharging",
"default": ""
},
"charged_icon": {
"type": "string",
"title": "Charged Icon",
"description": "Text/icon to display when fully charged",
"default": ""
},
"not_charging_icon": {
"type": "string",
"title": "Not Charging Icon",
"description": "Text/icon to display when on AC power",
"default": ""
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "command"
}
}
},
"then": {
"title": "Command Segment",
"description": "https://ohmyposh.dev/docs/segments/command",
"properties": {
"properties": {
"properties": {
"shell": {
"type": "string",
"title": "Shell",
"description": "The shell in which to run the command in. Uses shell -c command under the hood",
"default": "bash"
},
"command": {
"type": "string",
"title": "Command",
"description": "the command(s) to run",
"default": ""
},
"script": {
"type": "string",
"title": "Script",
"description": "A script to run",
"default": ""
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "connection"
}
}
},
"then": {
"title": "Connection Segment",
"description": "https://ohmyposh.dev/docs/segments/connection",
"properties": {
"properties": {
"properties": {
"type": {
"type": "string",
"title": "Connection type",
"description": "The connection type to display",
"enum": [
"ethernet",
"wifi",
"cellular",
"bluetooth"
],
"default": "wifi|ethernet"
},
"unit": {
"type": "string",
"title": "Transfer speed unit",
"enum": [
"none",
"b",
"bps",
"K",
"Kbps",
"M",
"Mbps",
"G",
"Gbps",
"T",
"Tbps"
],
"default": "none"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "cmake"
}
}
},
"then": {
"title": "Cmake Segment",
"description": "https://ohmyposh.dev/docs/segments/cmake",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "docker"
}
}
},
"then": {
"title": "Docker Segment",
"description": "https://ohmyposh.dev/docs/segments/docker"
}
},
{
"if": {
"properties": {
"type": {
"const": "dotnet"
}
}
},
"then": {
"title": "Dotnet Segment",
"description": "https://ohmyposh.dev/docs/segments/dotnet",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "exit"
}
}
},
"then": {
"title": "Exit Segment",
"description": "https://ohmyposh.dev/docs/segments/exit",
"properties": {
"properties": {
"properties": {
"always_enabled": {
"type": "boolean",
"title": "Always Enabled",
"description": "Always show the status",
"default": false
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "flutter"
}
}
},
"then": {
"title": "Flutter Segment",
"description": "https://ohmyposh.dev/docs/segments/flutter",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "fossil"
}
}
},
"then": {
"title": "Fossil Segment",
"description": "https://ohmyposh.dev/docs/segments/fossil"
}
},
{
"if": {
"properties": {
"type": {
"const": "git"
}
}
},
"then": {
"title": "Git Segment",
"description": "https://ohmyposh.dev/docs/segments/git",
"properties": {
"properties": {
"properties": {
"fetch_status": {
"type": "boolean",
"title": "Display Status",
"description": "Display the local changes or not",
"default": true
},
"fetch_stash_count": {
"type": "boolean",
"title": "Display Stash Count",
"description": "Display the stash count or not",
"default": false
},
"fetch_worktree_count": {
"type": "boolean",
"title": "Display Worktree Count",
"description": "Display the worktree count or not",
"default": false
},
"fetch_upstream_icon": {
"type": "boolean",
"title": "Display Upstream Icon",
"description": "Display upstream icon or not",
"default": false
},
"fetch_bare_info": {
"type": "boolean",
"title": "Fetch info when in a bare repo",
"description": "Fetch info when in a bare repo or not",
"default": false
},
"branch_icon": {
"type": "string",
"title": "Branch Icon",
"description": "The icon to use in front of the git branch name",
"default": "\uE0A0 "
},
"branch_identical_icon": {
"type": "string",
"title": "Branch Identical Icon",
"description": "The icon to display when remote and local are identical",
"default": "\u2261"
},
"branch_ahead_icon": {
"type": "string",
"title": "Branch Ahead Icon",
"description": "The icon to display when the local branch is ahead of its remote",
"default": "\u2191"
},
"branch_behind_icon": {
"type": "string",
"title": "Branch Behind Icon",
"description": "The icon to display when the local branch is behind its remote",
"default": "\u2193"
},
"branch_gone_icon": {
"type": "string",
"title": "Branch Gone Icon",
"description": "The icon to display when there's no remote branch",
"default": "\u2262"
},
"commit_icon": {
"type": "string",
"title": "Commit Icon",
"description": "Icon/text to display before the commit context (detached HEAD)",
"default": "\uF417"
},
"tag_icon": {
"type": "string",
"title": "Tag Icon",
"description": "Icon/text to display before the tag context",
"default": "\uF412"
},
"rebase_icon": {
"type": "string",
"title": "Rebase Icon",
"description": "Icon/text to display before the context when in a rebase",
"default": "\uE728"
},
"cherry_pick_icon": {
"type": "string",
"title": "Cherry-pick Icon",
"description": "Icon/text to display before the context when doing a cherry-pick",
"default": "\uE29B"
},
"revert_icon": {
"type": "string",
"title": "Revert Icon",
"description": "Icon/text to display before the context when doing a revert",
"default": "\uF0E2"
},
"merge_icon": {
"type": "string",
"title": "Merge Icon",
"description": "Icon/text to display before the merge context",
"default": "\uE727"
},
"no_commits_icon": {
"type": "string",
"title": "No Commits Icon",
"description": "Icon/text to display when there are no commits in the repo",
"default": "\uF594"
},
"github_icon": {
"type": "string",
"title": "Github Icon",
"description": "Icon/text to display when the upstream is Github",
"default": "\uF408"
},
"gitlab_icon": {
"type": "string",
"title": "Gitlab Icon",
"description": "Icon/text to display when the upstream is Gitlab",
"default": "\uF296"
},
"bitbucket_icon": {
"type": "string",
"title": "Bitbucket Icon",
"description": "Icon/text to display when the upstream is Bitbucket",
"default": "\uF171"
},
"azure_devops_icon": {
"type": "string",
"title": "Azure DevOps Icon",
"description": "Icon/text to display when the upstream is Azure DevOps",
"default": "\uEBE8"
},
"git_icon": {
"type": "string",
"title": "Git Icon",
"description": "Icon/text to display when the upstream is not known/mapped",
"default": "\uE5FB"
},
"branch_max_length": {
"type": "integer",
"title": "Branch max length",
"description": "the max length for the displayed branch name where 0 implies full length",
"default": 0
},
"untracked_modes": {
"type": "object",
"title": "Untracked files mode",
"description": "Set the untracked files mode for a repository",
"default": {}
},
"ignore_submodules": {
"type": "object",
"title": "Ignore submodules",
"description": "Ignore changes to submodules when looking for changes",
"default": {}
},
"ignore_status": {
"type": "array",
"title": "Ignore fetching status in these repo's",
"description": "Ignore fetching status for certain repo's, uses the same logic as the exclude_folders property",
"default": [],
"items": {
"type": "string"
}
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "go"
}
}
},
"then": {
"title": "Golang Segment",
"description": "https://ohmyposh.dev/docs/segments/golang",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
},
"parse_mod_file": {
"type": "boolean",
"title": "Parse go.mod file",
"description": "Parse go.mod file instead of calling out to go to improve performance.",
"default": false
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "dart"
}
}
},
"then": {
"title": "Dart Segment",
"description": "https://ohmyposh.dev/docs/segments/dart",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "deno"
}
}
},
"then": {
"title": "Deno CLI Segment",
"description": "https://ohmyposh.dev/docs/segments/deno",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "crystal"
}
}
},
"then": {
"title": "Crystal Segment",
"description": "https://ohmyposh.dev/docs/segments/crystal",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "julia"
}
}
},
"then": {
"title": "Julia Segment",
"description": "https://ohmyposh.dev/docs/segments/julia",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "perl"
}
}
},
"then": {
"title": "Perl Segment",
"description": "https://ohmyposh.dev/docs/segments/perl",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "php"
}
}
},
"then": {
"title": "PHP Segment",
"description": "https://ohmyposh.dev/docs/segments/php",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "java"
}
}
},
"then": {
"title": "Java Segment",
"description": "https://ohmyposh.dev/docs/segments/java",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "ruby"
}
}
},
"then": {
"title": "Ruby Segment",
"description": "https://ohmyposh.dev/docs/segments/ruby",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "rust"
}
}
},
"then": {
"title": "Rust Segment",
"description": "https://ohmyposh.dev/docs/segments/rust",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "xmake"
}
}
},
"then": {
"title": "XMake Segment",
"description": "https://ohmyposh.dev/docs/segments/xmake",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "kubectl"
}
}
},
"then": {
"title": "Kubectl Segment",
"description": "https://ohmyposh.dev/docs/segments/kubectl",
"properties": {
"properties": {
"properties": {
"display_error": {
"type": "boolean",
"title": "Display Error",
"description": "Show the error context when failing to retrieve the kubectl information",
"default": false
},
"parse_kubeconfig": {
"type": "boolean",
"title": "Parse kubeconfig",
"description": "Parse kubeconfig files instead of calling out to kubectl to improve performance.",
"default": false
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "aws"
}
}
},
"then": {
"title": "AWS Segment",
"description": "https://ohmyposh.dev/docs/segments/aws",
"properties": {
"properties": {
"properties": {
"display_default": {
"type": "boolean",
"title": "Display Default User Profile",
"description": "Display the segment when default user or not",
"default": true
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "node"
}
}
},
"then": {
"title": "Node Segment",
"description": "https://ohmyposh.dev/docs/segments/node",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
},
"fetch_package_manager": {
"type": "boolean",
"title": "Fetch Display Package Manager",
"description": "Assigns the Yarn or NPM icon to .PackageManagerIcon",
"default": false
},
"yarn_icon": {
"type": "string",
"title": "Yarn Icon",
"description": "Icon/text to use for Yarn",
"default": " \uF61A"
},
"npm_icon": {
"type": "string",
"title": "NPM Icon",
"description": "Icon/text to use for NPM",
"default": " \uE71E"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "azfunc"
}
}
},
"then": {
"title": "Azure Function Segment",
"description": "https://ohmyposh.dev/docs/segments/azfunc",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "os"
}
}
},
"then": {
"title": "Operating System Segment",
"description": "https://ohmyposh.dev/docs/segments/os",
"properties": {
"properties": {
"properties": {
"macos": {
"type": "string",
"title": "MacOS Icon",
"description": "Icon/text to use for macOS",
"default": "\uF179"
},
"linux": {
"type": "string",
"title": "Linux Icon",
"description": "Icon/text to use for Linux",
"default": "\uF17C"
},
"windows": {
"type": "string",
"title": "Windows Icon",
"description": "Icon/text to use for Windows",
"default": "\uE62A"
},
"display_distro_name": {
"type": "boolean",
"title": "Display Distro Name",
"description": "Display the distro name or icon or not",
"default": false
},
"alpine": {
"type": "string",
"title": "Alpine Icon",
"description": "The icon to use for Alpine",
"default": "\uF300"
},
"aosc": {
"type": "string",
"title": "Aosc Icon",
"description": "The icon to use for Aosc",
"default": "\uF301"
},
"arch": {
"type": "string",
"title": "Arch Icon",
"description": "The icon to use for Arch",
"default": "\uF303"
},
"centos": {
"type": "string",
"title": "Centos Icon",
"description": "The icon to use for Centos",
"default": "\uF303"
},
"coreos": {
"type": "string",
"title": "Coreos Icon",
"description": "The icon to use for Coreos",
"default": "\uF305"
},
"debian": {
"type": "string",
"title": "Debian Icon",
"description": "The icon to use for Debian",
"default": "\uF306"
},
"devuan": {
"type": "string",
"title": "Devuan Icon",
"description": "The icon to use for Devuan",
"default": "\uF307"
},
"raspbian": {
"type": "string",
"title": "Raspbian Icon",
"description": "The icon to use for Raspbian",
"default": "\uF315"
},
"elementary": {
"type": "string",
"title": "Elementary Icon",
"description": "The icon to use for Elementary",
"default": "\uF309"
},
"fedora": {
"type": "string",
"title": "Fedora Icon",
"description": "The icon to use for Fedora",
"default": "\uF30a"
},
"gentoo": {
"type": "string",
"title": "Gentoo Icon",
"description": "The icon to use for Gentoo",
"default": "\uF30d"
},
"mageia": {
"type": "string",
"title": "Mageia Icon",
"description": "The icon to use for Mageia",
"default": "\uF310"
},
"manjaro": {
"type": "string",
"title": "Manjaro Icon",
"description": "The icon to use for Manjaro",
"default": "\uF312"
},
"mint": {
"type": "string",
"title": "Mint Icon",
"description": "The icon to use for Mint",
"default": "\uF30e"
},
"nixos": {
"type": "string",
"title": "Nixos Icon",
"description": "The icon to use for Nixos",
"default": "\uF313"
},
"opensuse": {
"type": "string",
"title": "Opensuse Icon",
"description": "The icon to use for Opensuse",
"default": "\uF314"
},
"redhat": {
"type": "string",
"title": "Redhat Icon",
"description": "The icon to use for Redhat",
"default": "\uF316"
},
"sabayon": {
"type": "string",
"title": "Sabayon Icon",
"description": "The icon to use for Sabayon",
"default": "\uF317"
},
"slackware": {
"type": "string",
"title": "Slackware Icon",
"description": "The icon to use for Slackware",
"default": "\uF319"
},
"ubuntu": {
"type": "string",
"title": "Ubuntu Icon",
"description": "The icon to use for Ubuntu",
"default": "\uF31b"
},
"rocky": {
"type": "string",
"title": "Rocky Icon",
"description": "The icon to use for Rocky",
"default": "\uF32B"
},
"alma": {
"type": "string",
"title": "Alma Icon",
"description": "The icon to use for Alma",
"default": "\uF31D"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "path"
}
}
},
"then": {
"title": "Path Segment",
"description": "https://ohmyposh.dev/docs/segments/path",
"properties": {
"properties": {
"properties": {
"folder_separator_icon": {
"type": "string",
"title": "Folder Separator Icon",
"description": "The symbol to use as a separator between folders",
"default": "/"
},
"home_icon": {
"type": "string",
"title": "Home Icon",
"description": "The icon to display when at $HOME",
"default": "/"
},
"folder_icon": {
"type": "string",
"title": "Folder Icon",
"description": "The icon to use as a folder indication",
"default": ".."
},
"windows_registry_icon": {
"type": "string",
"title": "Windows Registry Icon",
"description": "The icon to display when in the Windows registry",
"default": "\uE0B1"
},
"style": {
"type": "string",
"title": "The Path Style",
"description": "How to display the current path",
"enum": [
"agnoster",
"agnoster_full",
"agnoster_short",
"agnoster_left",
"short",
"full",
"folder",
"mixed",
"letter",
"unique",
"powerlevel"
],
"default": "folder"
},
"mapped_locations": {
"type": "object",
"title": "Mapped Locations",
"description": "Custom glyph/text for specific paths",
"default": {}
},
"max_depth": {
"type": "integer",
"title": "Maximum Depth",
"description": "Maximum path depth to display without shortening",
"default": 1
},
"mapped_locations_enabled": {
"type": "boolean",
"title": "Enable the Mapped Locations feature",
"description": "Replace known locations in the path with the replacements before applying the style.",
"default": true
},
"mixed_threshold": {
"type": "integer",
"title": "Mixed threshold",
"description": "The maximum length of a path segment that will be displayed when using mixed style.",
"default": 4
},
"hide_root_location": {
"type": "boolean",
"title": "Hide the root location",
"description": "Hides the root location, when using agnoster_short style, if it doesn't fit in the last max_depth folders.",
"default": false
},
"cycle": {
"type": "array",
"title": "Color overrides to use to cycle through and color the path per folder",
"items": {
"type": "string"
}
},
"cycle_folder_separator": {
"type": "boolean",
"title": "Cycle the folder_separator_icon",
"description": "Colorize the folder_separator_icon as well when using a cycle.",
"default": false
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "python"
}
}
},
"then": {
"title": "Python Segment",
"description": "https://ohmyposh.dev/docs/segments/python",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_virtual_env": {
"type": "boolean",
"title": "Fetch Virtual Env",
"description": "Fetch the name of the virtualenv or not",
"default": true
},
"display_default": {
"type": "boolean",
"title": "Display Default",
"description": "Show the name of the virtualenv when it's default",
"default": true
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "root"
}
}
},
"then": {
"title": "Root Segment",
"description": "https://ohmyposh.dev/docs/segments/root"
}
},
{
"if": {
"properties": {
"type": {
"const": "sapling"
}
}
},
"then": {
"title": "Sapling Segment",
"description": "https://ohmyposh.dev/docs/segments/sapling",
"properties": {
"properties": {
"properties": {
"fetch_status": {
"type": "boolean",
"title": "Display Status",
"description": "Display the local changes or not",
"default": true
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "session"
}
}
},
"then": {
"title": "Session Segment",
"description": "https://ohmyposh.dev/docs/segments/session",
"properties": {
"properties": {
"properties": {
"ssh_icon": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to display first when in an active SSH session",
"default": "\uF817"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "shell"
}
}
},
"then": {
"title": "Shell Segment",
"description": "https://ohmyposh.dev/docs/segments/shell",
"properties": {
"properties": {
"properties": {
"custom_text": {
"type": "object",
"title": "Custom Text",
"description": "Custom glyph/text for specific shells",
"default": {}
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "spotify"
}
}
},
"then": {
"title": "Spotify Segment",
"description": "https://ohmyposh.dev/docs/segments/spotify",
"properties": {
"properties": {
"properties": {
"playing_icon": {
"type": "string",
"title": "User Info Separator",
"description": "Text/icon to show when playing",
"default": "\uE602"
},
"paused_icon": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to show when paused",
"default": "\uF8E3"
},
"stopped_icon": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to show when stopped",
"default": "\uF04D"
},
"track_separator": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to put between the artist and song name",
"default": " - "
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "terraform"
}
}
},
"then": {
"title": "Terraform Segment",
"description": "https://ohmyposh.dev/docs/segments/terraform"
}
},
{
"if": {
"properties": {
"type": {
"const": "text"
}
}
},
"then": {
"title": "Text Segment",
"description": "https://ohmyposh.dev/docs/segments/text",
"properties": {
"properties": {
"properties": {
"text": {
"type": "string",
"title": "Text",
"description": "Text/icon to display",
"default": ""
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "time"
}
}
},
"then": {
"title": "Time Segment",
"description": "https://ohmyposh.dev/docs/segments/time",
"properties": {
"properties": {
"properties": {
"time_format": {
"type": "string",
"title": "Time Format",
"description": "Format to use, follows the golang standard: https://gobyexample.com/time-formatting-parsing",
"default": "15:04:05"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "ytm"
}
}
},
"then": {
"title": "YouTube Music Desktop App Segment",
"description": "https://ohmyposh.dev/docs/segments/ytm",
"properties": {
"properties": {
"properties": {
"playing_icon": {
"type": "string",
"title": "User Info Separator",
"description": "Text/icon to show when playing",
"default": "\uE602"
},
"paused_icon": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to show when paused",
"default": "\uF8E3"
},
"stopped_icon": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to show when stopped",
"default": "\uF04D"
},
"track_separator": {
"type": "string",
"title": "SSH Icon",
"description": "Text/icon to put between the artist and song name",
"default": " - "
},
"api_url": {
"type": "string",
"title": "API URL",
"description": "The YTMDA Remote Control API URL",
"default": "http://127.0.0.1:9863"
},
"http_timeout": {
"$ref": "#/definitions/http_timeout"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "owm"
}
}
},
"then": {
"title": "Open Weather Map Segment",
"description": "Displays the current weather from the Open Weather Map system",
"properties": {
"properties": {
"properties": {
"apikey": {
"type": "string",
"title": "apikey",
"description": "The apikey used for the api call (Required)",
"default": "."
},
"location": {
"type": "string",
"title": "location",
"description": "Location to use for the api call. Formatted as <City>,<STATE>,<COUNTRY_CODE>. City name, state code and country code divided by comma. Please, refer to ISO 3166 for the state codes or country codes.",
"default": "De Bilt,NL"
},
"units": {
"type": "string",
"title": "units",
"description": "Units of measurement. Available values are standard (kelvin), metric (celsius), and imperial (fahrenheit). Default is standard",
"default": "standard",
"enum": [
"standard",
"metric",
"imperial"
]
},
"http_timeout": {
"$ref": "#/definitions/http_timeout"
},
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "elixir"
}
}
},
"then": {
"title": "Elixir Segment",
"description": "https://ohmyposh.dev/docs/segments/elixir",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "executiontime"
}
}
},
"then": {
"title": "Displays the execution time of the previously executed command",
"description": "https://ohmyposh.dev/docs/segments/executiontime",
"properties": {
"properties": {
"properties": {
"always_enabled": {
"type": "boolean",
"title": "Always Enabled",
"description": "Always show the duration",
"default": false
},
"threshold": {
"type": "number",
"title": "Threshold",
"description": "minimum duration (milliseconds) required to enable this segment",
"default": 500
},
"style": {
"type": "string",
"title": "Style",
"description": "The style in which the time will be displayed",
"enum": [
"austin",
"roundrock",
"dallas",
"galveston",
"galvestonms",
"houston",
"amarillo",
"round"
],
"default": "austin"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "sysinfo"
}
}
},
"then": {
"title": "Get sysinfo",
"description": "https://ohmyposh.dev/docs/segments/sysinfo",
"properties": {
"properties": {
"properties": {
"precision": {
"type": "integer",
"title": "Precision",
"description": "number of decimal places to show",
"default": 0
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "strava"
}
}
},
"then": {
"title": "Display training data from Strava",
"description": "https://ohmyposh.dev/docs/segments/strava",
"properties": {
"properties": {
"properties": {
"url": {
"type": "string",
"title": "URL of API with Strava data",
"description": "Url of your api provinding a Strava activity",
"default": ""
},
"ride_icon": {
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\uf206"
},
"run_icon": {
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\ue213"
},
"skiing_icon": {
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\ue213"
},
"workout_icon": {
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\ue213"
},
"unknown_activity_icon": {
"type": "string",
"title": "Fallback icon",
"description": "Fallback icon for other activity types",
"default": "\ue213"
},
"http_timeout": {
"$ref": "#/definitions/http_timeout"
},
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
},
"access_token": {
"$ref": "#/definitions/access_token"
},
"refresh_token": {
"$ref": "#/definitions/refresh_token"
},
"expires_in": {
"$ref": "#/definitions/expires_in"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "svn"
}
}
},
"then": {
"title": "SVN Segment",
"description": "https://ohmyposh.dev/docs/segments/svn",
"properties": {
"properties": {
"properties": {
"fetch_status": {
"type": "boolean",
"title": "Display Status",
"description": "Display the local changes or not",
"default": true
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "angular"
}
}
},
"then": {
"title": "Angular CLI Segment",
"description": "https://ohmyposh.dev/docs/segments/angular",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "nx"
}
}
},
"then": {
"title": "Nx Segment",
"description": "https://ohmyposh.dev/docs/segments/nx",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "wakatime"
}
}
},
"then": {
"title": "Wakatime",
"description": "Displays the tracked time on wakatime.com",
"properties": {
"properties": {
"properties": {
"apikey": {
"type": "string",
"title": "apikey",
"description": "The apikey used for the api call (Required)",
"default": "."
},
"http_timeout": {
"$ref": "#/definitions/http_timeout"
},
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "winreg"
}
}
},
"then": {
"title": "Windows Registry Query",
"description": "https://ohmyposh.dev/docs/segments/winreg",
"properties": {
"properties": {
"properties": {
"path": {
"type": "string",
"title": "Registry Path",
"description": "The path to the registry key (case insensitive, must use backslashes). Ending with \\ will retrieve \"(Default)\" key in that path.",
"default": ""
},
"fallback": {
"type": "string",
"title": "Fallback value",
"description": "Value to display if registry value cannot be retrieved",
"default": ""
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "withings"
}
}
},
"then": {
"title": "Display activity data from Withings",
"description": "https://ohmyposh.dev/docs/segments/withings",
"properties": {
"properties": {
"properties": {
"http_timeout": {
"$ref": "#/definitions/http_timeout"
},
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
},
"access_token": {
"$ref": "#/definitions/access_token"
},
"refresh_token": {
"$ref": "#/definitions/refresh_token"
},
"expires_in": {
"$ref": "#/definitions/expires_in"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "plastic"
}
}
},
"then": {
"title": "Plastic SCM Segment",
"description": "https://ohmyposh.dev/docs/segments/plastic",
"properties": {
"properties": {
"properties": {
"fetch_status": {
"type": "boolean",
"title": "Display Status",
"description": "Display the local changes or not",
"default": false
},
"branch_icon": {
"type": "string",
"title": "Branch Icon",
"description": "The icon to use in front of the selector branch name",
"default": "\uE0A0 "
},
"commit_icon": {
"type": "string",
"title": "Commit Icon",
"description": "Icon/text to display before the selector changeset",
"default": "\uF417"
},
"tag_icon": {
"type": "string",
"title": "Tag Icon",
"description": "Icon/text to display before the seletor label",
"default": "\uF412"
},
"branch_max_length": {
"type": "integer",
"title": "Branch max length",
"description": "the max length for the displayed branch name where 0 implies full length",
"default": 0
},
"full_branch_path": {
"type": "boolean",
"title": "Full branch path",
"description": "display the full branch path instead of only the branch name",
"default": false
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "brewfather"
}
}
},
"then": {
"title": "Brewfather Batch Status",
"description": "https://ohmyposh.dev/docs/brewfather",
"properties": {
"properties": {
"properties": {
"user_id": {
"type": "string",
"title": "Brewfather UserID (required)",
"description": "Provided by Brewfather's Generate API Key settings option",
"default": ""
},
"api_key": {
"type": "string",
"title": "Brewfather API Key (required)",
"description": "Provided by Brewfather's Generate API Key settings option",
"default": ""
},
"batch_id": {
"type": "string",
"title": "ID of the batch in Brewfather (required)",
"description": "At the end of the URL when viewing the batch on the Brewfather site",
"default": ""
},
"day_icon": {
"type": "string",
"title": "Icon to use to indicate days",
"description": "Appended to a number to indicate days, e.g. 25d",
"default": "d"
},
"http_timeout": {
"$ref": "#/definitions/http_timeout"
},
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
},
"doubleup_icon": {
"type": "string",
"title": "Temperature trend icon, very high positive change",
"description": "Delta between this and prior temperature reading is very high (> 4C by default), available intemplate as .TemperatureTrend",
"default": "↑↑"
},
"singleup_icon": {
"type": "string",
"title": "Temperature trend icon, high positive change",
"description": "Delta between this and prior temperature reading is high (2C < delta < 4C by default), available intemplate as .TemperatureTrend",
"default": "↑"
},
"fortyfiveup_icon": {
"type": "string",
"title": "Temperature trend icon, positive change",
"description": "Delta between this and prior temperature reading is positive (0.5C < delta < 2C by default), available intemplate as .TemperatureTrend",
"default": "↗"
},
"flat_icon": {
"type": "string",
"title": "Temperature trend icon, flat/small change",
"description": "Delta between this and prior temperature and this temperature reading (< +-0.5C change), available intemplate as .TemperatureTrend",
"default": "→"
},
"fortyfivedown_icon": {
"type": "string",
"title": "Temperature trend icon, v. negative change",
"description": "Delta between this and prior temperature reading is negative (-0.5C > delta > -2C by default), available intemplate as .TemperatureTrend",
"default": "↘"
},
"singledown_icon": {
"type": "string",
"title": "Temperature trend icon, high negative change",
"description": "Delta between this and prior temperature reading is large negative (-2C > delta > -4C by default), available intemplate as .TemperatureTrend",
"default": "↓"
},
"doubledown_icon": {
"type": "string",
"title": "Temperature trend icon, very high negative change",
"description": "Delta between this and prior temperature reading is very large negative (> -4C by default), available intemplate as .TemperatureTrend",
"default": "↓↓"
},
"planning_status_icon": {
"type": "string",
"title": "Icon for batch in planning",
"description": "Available in template as .StatusIcon",
"default": "\uF8EA"
},
"brewing_status_icon": {
"type": "string",
"title": "Icon for batch being brewed",
"description": "Available in template as .StatusIcon",
"default": "\uF7DE"
},
"fermenting_status_icon": {
"type": "string",
"title": "Icon for batch fermenting",
"description": "Available in template as .StatusIcon",
"default": "\uF499"
},
"conditioning_status_icon": {
"type": "string",
"title": "Icon for batch conditioning",
"description": "Available in template as .StatusIcon",
"default": "\uE372"
},
"completed_status_icon": {
"type": "string",
"title": "Icon for completed batch",
"description": "Available in template as .StatusIcon",
"default": "\uF7A5"
},
"archived_status_icon": {
"type": "string",
"title": "Icon for archived batch",
"description": "Available in template as .StatusIcon",
"default": "\uF187"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "ipify"
}
}
},
"then": {
"title": "Display your external IP Address",
"description": "https://ohmyposh.dev/docs/segments/ipify",
"properties": {
"properties": {
"properties": {
"url": {
"type": "string",
"title": "URL",
"description": "The Ipify API URL",
"default": "https://api.ipify.org"
},
"http_timeout": {
"$ref": "#/definitions/http_timeout"
},
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "haskell"
}
}
},
"then": {
"title": "Haskell Segment",
"description": "https://ohmyposh.dev/docs/segments/haskell",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
},
"stack_ghc_mode": {
"type": "string",
"title": "Use Stack GHC",
"description": "Get the GHC version used by Stack. Will decrease performance. Boolean indicating whether stack ghc was used available in template as .StackGhc",
"enum": [
"always",
"package",
"never"
],
"default": "never"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "ui5tooling"
}
}
},
"then": {
"title": "UI5 tooling CLI segment",
"description": "https://ohmyposh.dev/docs/segments/ui5tooling",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "unity"
}
}
},
"then": {
"title": "Unity Segment",
"description": "https://ohmyposh.dev/docs/unity",
"properties": {
"properties": {
"properties": {
"http_timeout": {
"$ref": "#/definitions/http_timeout"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "vala"
}
}
},
"then": {
"title": "Vala Segment",
"description": "https://ohmyposh.dev/docs/segments/vala",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "cf"
}
}
},
"then": {
"title": "Clound Foundry CLI segment",
"description": "https://ohmyposh.dev/docs/segments/cf",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "cftarget"
}
}
},
"then": {
"title": "Clound Foundry Target segment",
"description": "https://ohmyposh.dev/docs/segments/cftarget",
"properties": {
"properties": {
"properties": {
"display_mode": {
"$ref": "#/definitions/display_mode"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "kotlin"
}
}
},
"then": {
"title": "Kotlin Segment",
"description": "https://ohmyposh.dev/docs/segments/kotlin",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "lua"
}
}
},
"then": {
"title": "Lua Segment",
"description": "https://ohmyposh.dev/docs/segments/lua",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
},
"preferred_executable": {
"type": "string",
"title": "Preferred Executable",
"description": "The preferred executable to use when fetching the version.",
"enum": [
"lua",
"luajit"
],
"default": "lua"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "swift"
}
}
},
"then": {
"title": "Swift Segment",
"description": "https://ohmyposh.dev/docs/segments/swift",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "cds"
}
}
},
"then": {
"title": "CDS (SAP CAP) segment",
"description": "https://ohmyposh.dev/docs/segments/cds",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "r"
}
}
},
"then": {
"title": "R Segment",
"description": "https://ohmyposh.dev/docs/segments/r",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "gcp"
}
}
},
"then": {
"title": "GCP Segment",
"description": "https://ohmyposh.dev/docs/segments/gcp"
}
},
{
"if": {
"properties": {
"type": {
"const": "gitversion"
}
}
},
"then": {
"title": "Display GitVersion segment",
"description": "https://ohmyposh.dev/docs/segments/gitversion"
}
},
{
"if": {
"properties": {
"type": {
"const": "mercurial"
}
}
},
"then": {
"title": "Mercurial Segment",
"description": "https://ohmyposh.dev/docs/mercurial",
"properties": {
"properties": {
"properties": {
"fetch_status": {
"type": "boolean",
"title": "Display Status",
"description": "Display the local changes or not",
"default": true
}
}
}
}
}
}
]
}
},
"required": [
"blocks"
],
"properties": {
"final_space": {
"type": "boolean",
"title": "Final Space",
"description": "https://ohmyposh.dev/docs/configuration/overview#general-settings",
"default": true
},
"shell_integration": {
"type": "boolean",
"title": "FTCS command marks for shell integration",
"default": false
},
"pwd": {
"type": "string",
"title": "Enable OSC99/7/51",
"description": "https://ohmyposh.dev/docs/configuration/overview#general-settings",
"default": ""
},
"console_title_template": {
"type": "string",
"title": "Console Title Template",
"description": "https://ohmyposh.dev/docs/configuration/title#console-title-template",
"default": "{{ .Shell }} in {{ .Folder }}"
},
"terminal_background": {
"$ref": "#/definitions/color"
},
"blocks": {
"type": "array",
"title": "Block array",
"default": [],
"description": "https://ohmyposh.dev/docs/configuration/overview#blocks",
"items": {
"$ref": "#/definitions/block"
}
},
"tooltips": {
"type": "array",
"title": "Tooltip list, prompt elements to display based on context",
"description": "https://ohmyposh.dev/docs/configuration/tooltips",
"default": [],
"items": {
"allOf": [
{
"$ref": "#/definitions/segment"
}
],
"properties": {
"tips": {
"type": "array",
"title": "The commands for which you want the segment to show",
"items": {
"type": "string"
}
}
},
"required": [
"tips"
]
}
},
"transient_prompt": {
"$ref": "#/definitions/extra_prompt",
"title": "Transient Prompt Setting",
"description": "https://ohmyposh.dev/docs/configuration/transient",
"properties": {
"filler": {
"type": "string",
"title": "Filler",
"description": "Right aligned filler text, will span the remaining width"
}
}
},
"valid_line": {
"$ref": "#/definitions/extra_prompt",
"title": "Valid Line Setting (for PowerShell only)",
"description": "https://ohmyposh.dev/docs/configuration/line-error"
},
"error_line": {
"$ref": "#/definitions/extra_prompt",
"title": "Error Line Setting (for PowerShell only)",
"description": "https://ohmyposh.dev/docs/configuration/line-error"
},
"secondary_prompt": {
"$ref": "#/definitions/extra_prompt",
"title": "Secondary Prompt Setting",
"description": "https://ohmyposh.dev/docs/configuration/secondary-prompt"
},
"debug_prompt": {
"$ref": "#/definitions/extra_prompt",
"title": "Debug Prompt Setting (for PowerShell only)",
"description": "https://ohmyposh.dev/docs/configuration/debug-prompt"
},
"palette": {
"type": "object",
"title": "Palette",
"description": "https://ohmyposh.dev/docs/configuration/colors#palette",
"default": {},
"patternProperties": {
".*": {
"$ref": "#/definitions/color"
}
}
},
"palettes": {
"type": "object",
"title": "Palettes",
"description": "https://ohmyposh.dev/docs/configuration/colors#palettes",
"default": {},
"properties": {
"template": {
"type": "string",
"title": "Prompt Template"
},
"list": {
"type": "object",
"title": "List of palettes",
"patternProperties": {
".*": {
"$ref": "#/properties/palette"
}
}
}
}
},
"cycle": {
"type": "array",
"title": "List of settings to cycle through segment by segment",
"description": "https://ohmyposh.dev/docs/configuration/cycle",
"default": [],
"items": {
"properties": {
"foreground": {
"$ref": "#/definitions/color"
},
"background": {
"$ref": "#/definitions/color"
}
}
}
},
"accent_color": {
"title": "Accent color",
"$ref": "#/definitions/color"
}
}
}
{
"$schema": "https://gist.githubusercontent.com/treckstar/175547806360c7f2c81cc961ad8037f1/raw/schema.json",
"blocks": [
{
"alignment": "left",
"segments": [
{
"background": "#c386f1",
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": " {{ .UserName }} ",
"trailing_diamond": "\ue0b0",
"type": "session"
},
{
"background": "#ff479c",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"folder_separator_icon": " \ue0b1 ",
"home_icon": "~",
"style": "folder"
},
"style": "powerline",
"template": " \uea83 {{ .Path }} ",
"type": "path"
},
{
"background": "#fffb38",
"background_templates": [
"{{ if or (.Working.Changed) (.Staging.Changed) }}#FF9248{{ end }}",
"{{ if and (gt .Ahead 0) (gt .Behind 0) }}#ff4500{{ end }}",
"{{ if gt .Ahead 0 }}#B388FF{{ end }}",
"{{ if gt .Behind 0 }}#B388FF{{ end }}"
],
"foreground": "#193549",
"leading_diamond": "\ue0b6",
"powerline_symbol": "\ue0b0",
"properties": {
"branch_max_length": 25,
"fetch_stash_count": true,
"fetch_status": true,
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},
{
"background": "#6CA35E",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"fetch_version": true
},
"style": "powerline",
"template": " \ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"type": "node"
},
{
"background": "#8ED1F7",
"foreground": "#111111",
"powerline_symbol": "\ue0b0",
"properties": {
"fetch_version": true
},
"style": "powerline",
"template": " \ue626 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"type": "go"
},
{
"background": "#4063D8",
"foreground": "#111111",
"powerline_symbol": "\ue0b0",
"properties": {
"fetch_version": true
},
"style": "powerline",
"template": " \ue624 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"type": "julia"
},
{
"background": "#FFDE57",
"foreground": "#111111",
"powerline_symbol": "\ue0b0",
"properties": {
"display_mode": "files",
"fetch_virtual_env": false
},
"style": "powerline",
"template": " \ue235 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"type": "python"
},
{
"background": "#AE1401",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"display_mode": "files",
"fetch_version": true
},
"style": "powerline",
"template": " \ue791 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"type": "ruby"
},
{
"background": "#FEAC19",
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"display_mode": "files",
"fetch_version": false
},
"style": "powerline",
"template": " \uf0e7{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"type": "azfunc"
},
{
"background_templates": [
"{{if contains \"default\" .Profile}}#FFA400{{end}}",
"{{if contains \"jan\" .Profile}}#f1184c{{end}}"
],
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"properties": {
"display_default": false
},
"style": "powerline",
"template": " \ue7ad {{ .Profile }}{{ if .Region }}@{{ .Region }}{{ end }} ",
"type": "aws"
},
{
"background": "#ffff66",
"foreground": "#111111",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " \uf0ad ",
"type": "root"
},
{
"background": "#83769c",
"foreground": "#ffffff",
"properties": {
"always_enabled": true
},
"style": "plain",
"template": "<transparent>\ue0b0</> \ueba2{{ .FormattedMs }}\u2800",
"type": "executiontime"
},
{
"background": "#00897b",
"background_templates": [
"{{ if gt .Code 0 }}#e91e63{{ end }}"
],
"foreground": "#ffffff",
"properties": {
"always_enabled": true
},
"style": "diamond",
"template": "<parentBackground>\ue0b0</> \ue23a ",
"trailing_diamond": "\ue0b4",
"type": "exit"
}
],
"type": "prompt"
},
{
"segments": [
{
"background": "#0077c2",
"foreground": "#ffffff",
"style": "plain",
"template": "<#0077c2,transparent>\ue0b6</> \uf489 {{ .Name }} <transparent,#0077c2>\ue0b2</>",
"type": "shell"
},
{
"background": "#1BD760",
"foreground": "#111111",
"invert_powerline": true,
"powerline_symbol": "\ue0b2",
"properties": {
"paused_icon": "\uf04c ",
"playing_icon": "\uf04b "
},
"style": "powerline",
"template": " \uf167 {{ .Icon }}{{ if ne .Status \"stopped\" }}{{ .Artist }} - {{ .Track }}{{ end }} ",
"type": "ytm"
},
{
"background": "#f36943",
"background_templates": [
"{{if eq \"Charging\" .State.String}}#40c4ff{{end}}",
"{{if eq \"Discharging\" .State.String}}#ff5722{{end}}",
"{{if eq \"Full\" .State.String}}#4caf50{{end}}"
],
"foreground": "#ffffff",
"invert_powerline": true,
"powerline_symbol": "\ue0b2",
"properties": {
"charged_icon": "\ue22f ",
"charging_icon": "\ue234 ",
"discharging_icon": "\ue231 "
},
"style": "powerline",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}\uf295 ",
"type": "battery"
},
{
"background": "#2e9599",
"foreground": "#111111",
"invert_powerline": true,
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": " {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b4",
"type": "time"
}
],
"type": "rprompt"
}
],
"console_title_template": "{{ .Shell }} in {{ .Folder }}",
"final_space": true,
"version": 2
}
{
"$schema": "https://gist.githubusercontent.com/treckstar/175547806360c7f2c81cc961ad8037f1/raw/schema.json",
"version": 2,
"final_space": true,
"console_title_template": "{{ .Shell }} in {{ .Folder }}",
"blocks": [
{
"type": "prompt",
"alignment": "left",
"segments": [
{
"type": "os",
"style": "diamond",
"foreground": "#000000",
"background": "#d3d7cf",
"leading_diamond": "\u256d\u2500\ue0b2",
"template": " {{ if .WSL }}WSL at {{ end }}{{.Icon}} "
},
{
"type": "path",
"style": "powerline",
"powerline_symbol": "\ue0b0",
"foreground": "#e4e4e4",
"background": "#3465a4",
"template": " \uf07c {{ .Path }} ",
"properties": {
"home_icon": "~",
"style": "full"
}
},
{
"type": "git",
"style": "powerline",
"powerline_symbol": "\ue0b0",
"foreground": "#000000",
"background": "#4e9a06",
"background_templates": [
"{{ if or (.Working.Changed) (.Staging.Changed) }}#c4a000{{ end }}",
"{{ if and (gt .Ahead 0) (gt .Behind 0) }}#f26d50{{ end }}",
"{{ if gt .Ahead 0 }}#89d1dc{{ end }}",
"{{ if gt .Behind 0 }}#4e9a06{{ end }}"
],
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \uf692 {{ .StashCount }}{{ end }} ",
"properties": {
"branch_icon": "\uf126 ",
"fetch_stash_count": true,
"fetch_status": true,
"fetch_upstream_icon": true
}
}
]
},
{
"type": "prompt",
"alignment": "right",
"segments": [
{
"type": "node",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#ffffff",
"background": "#689f63",
"template": " {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} \uf898 ",
"properties": {
"fetch_version": true
}
},
{
"type": "go",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#111111",
"background": "#00acd7",
"template": " {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} \ue627 ",
"properties": {
"fetch_version": true
}
},
{
"type": "julia",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#111111",
"background": "#4063D8",
"template": " {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} \ue624 ",
"properties": {
"fetch_version": true
}
},
{
"type": "python",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#111111",
"background": "#FFDE57",
"template": " {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} \ue235 ",
"properties": {
"display_mode": "files",
"fetch_virtual_env": false
}
},
{
"type": "ruby",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#ffffff",
"background": "#AE1401",
"template": " {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} \ue791 ",
"properties": {
"display_mode": "files",
"fetch_version": true
}
},
{
"type": "azfunc",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#ffffff",
"background": "#FEAC19",
"template": " {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} \uf0e7",
"properties": {
"display_mode": "files",
"fetch_version": false
}
},
{
"type": "aws",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#ffffff",
"background_templates": [
"{{if contains \"default\" .Profile}}#FFA400{{end}}",
"{{if contains \"jan\" .Profile}}#f1184c{{end}}"
],
"template": " {{ .Profile }}{{ if .Region }}@{{ .Region }}{{ end }} \ue7ad ",
"properties": {
"display_default": false
}
},
{
"type": "root",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#111111",
"background": "#ffff66",
"template": " \uf0ad "
},
{
"type": "executiontime",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#000000",
"background": "#c4a000",
"template": " {{ .FormattedMs }} \uf252 "
},
{
"type": "exit",
"style": "powerline",
"powerline_symbol": "\ue0b2",
"invert_powerline": true,
"foreground": "#d3d7cf",
"background": "#000000",
"background_templates": [
"{{ if gt .Code 0 }}#cc2222{{ end }}"
],
"template": " {{ if gt .Code 0 }}{{ .Meaning }}{{ else }}\u2714{{ end }} ",
"properties": {
"always_enabled": true
}
},
{
"type": "time",
"style": "diamond",
"invert_powerline": true,
"foreground": "#000000",
"background": "#d3d7cf",
"trailing_diamond": "\ue0b0\u2500\u256e",
"template": " {{ .CurrentDate | date .Format }} \uf017 "
}
]
},
{
"type": "prompt",
"alignment": "left",
"segments": [
{
"type": "text",
"style": "plain",
"foreground": "#d3d7cf",
"template": "\u2570\u2500"
}
],
"newline": true
},
{
"type": "rprompt",
"segments": [
{
"type": "text",
"style": "plain",
"foreground": "#d3d7cf",
"template": "\u2500\u256f"
}
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment