oh-my-posh/themes/schema.json

3424 lines
110 KiB
JSON
Raw Normal View History

2020-11-23 10:34:24 -08:00
{
"$schema": "http://json-schema.org/draft-07/schema",
"$id": "https://raw.githubusercontent.com/JanDeDobbeleer/oh-my-posh/main/themes/schema.json",
2020-11-23 10:34:24 -08:00
"type": "object",
"title": "The Oh My Posh theme definition",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/overview",
2020-11-23 10:34:24 -08:00
"definitions": {
"color": {
"anyOf": [
2022-05-14 12:18:03 -07:00
{
"$ref": "#/definitions/color_string"
},
{
"$ref": "#/definitions/palette_reference"
}
]
},
"color_string": {
2020-11-23 10:34:24 -08:00
"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)$",
2020-11-23 10:34:24 -08:00
"title": "Color string",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/colors",
2021-02-21 23:16:00 -08:00
"format": "color"
2020-11-23 10:34:24 -08:00
},
"palette_reference": {
"type": "string",
"pattern": "^p:.*$",
"title": "Palette reference",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/colors#palette"
},
"templates": {
2021-02-15 03:58:03 -08:00
"type": "array",
"title": "An array of templates",
2021-02-15 03:58:03 -08:00
"default": [],
"items": {
"$ref": "#/definitions/segment/properties/template"
2021-02-15 03:58:03 -08:00
}
},
"home_enabled": {
"type": "boolean",
"title": "Enable in the HOME folder",
"description": "Display the segment in the HOME folder",
"default": false
},
"fetch_version": {
2020-11-23 10:34:24 -08:00
"type": "boolean",
"title": "Fetch Version",
"description": "Fetch the version number",
2020-11-23 10:34:24 -08:00
"default": true
},
"http_timeout": {
"type": "integer",
2022-01-22 02:41:38 -08:00
"title": "Http request timeout",
"description": "Milliseconds to use for http request timeouts",
"default": 20
},
2022-07-17 12:11:23 -07:00
"cache_timeout": {
"type": "integer",
"title": "cache timeout",
"description": "Minutes the response is cached. A value of 0 disables the cache.",
2022-07-17 12:11:23 -07:00
"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": ""
},
"status_formats": {
"type": "object",
"title": "Status string formats",
"description": "Override the status format for a specific change. Example: {\"Added\": \"Added: %d\"}",
"default": {}
},
2022-02-19 07:49:26 -08:00
"extra_prompt": {
"type": "object",
"default": {},
"properties": {
"template": {
"type": "string",
"title": "Prompt Template"
},
2022-05-14 12:18:03 -07:00
"foreground": {
"$ref": "#/definitions/color"
},
"foreground_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
2022-05-14 12:18:03 -07:00
},
"background": {
"$ref": "#/definitions/color"
},
"background_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
2022-05-14 12:18:03 -07:00
}
2022-02-19 07:49:26 -08:00
}
},
2020-11-23 10:34:24 -08:00
"block": {
"type": "object",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/block",
2020-11-23 10:34:24 -08:00
"allOf": [
2020-12-17 23:59:45 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "prompt"
}
2020-12-17 23:59:45 -08:00
}
2020-11-23 10:34:24 -08:00
},
2020-12-17 23:59:45 -08:00
"then": {
"required": [
"type",
"alignment",
"segments"
],
2020-11-23 10:34:24 -08:00
"title": "Prompt definition, contains 1 or more segments to render"
}
2020-12-17 23:59:45 -08:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "rprompt"
}
2020-12-17 23:59:45 -08:00
}
},
"then": {
"required": [
"type",
"segments"
],
2020-12-15 05:58:15 -08:00
"title": "RPrompt definition, contains 1 or more segments to render to the right of the cursor"
2020-12-17 23:59:45 -08:00
}
},
{
"if": {
"properties": {
"type": {
"const": "prompt"
},
"alignment": {
"const": "right"
}
}
},
"then": {
"properties": {
2022-06-27 14:05:15 -07:00
"overflow": {
"type": "string",
"title": "Block overflow",
"description": "https://ohmyposh.dev/docs/configuration/block#overflow",
"enum": [
"break",
"hide"
],
"default": ""
}
}
}
2020-11-23 10:34:24 -08:00
}
],
"properties": {
"type": {
"type": "string",
"title": "Block type",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/block#type",
"enum": [
"prompt",
"rprompt"
],
2020-11-23 10:34:24 -08:00
"default": "prompt"
},
"alignment": {
"type": "string",
"title": "Block alignment",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/block#alignment",
"enum": [
"left",
"right"
],
2020-11-23 10:34:24 -08:00
"default": "left"
},
"newline": {
"type": "boolean",
"title": "Newline",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/block#newline",
"default": false
},
2020-11-23 10:34:24 -08:00
"segments": {
"type": "array",
"title": "Segments list, prompt elements to display based on context",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/block#segments",
2020-11-23 10:34:24 -08:00
"default": [],
2022-05-14 12:18:03 -07:00
"items": {
"$ref": "#/definitions/segment"
}
2020-11-23 10:34:24 -08:00
}
}
},
"segment": {
"type": "object",
"title": "A segment",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment",
2020-11-23 10:34:24 -08:00
"default": {},
"required": [
"type",
"style"
],
2020-11-23 10:34:24 -08:00
"properties": {
"type": {
"type": "string",
"title": "Segment Type",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#type",
2020-11-23 10:34:24 -08:00
"enum": [
"az",
"aws",
"azfunc",
"angular",
"battery",
"command",
"connection",
"crystal",
"cds",
"cf",
"cftarget",
2022-07-15 01:17:37 -07:00
"cmake",
"docker",
2020-11-23 10:34:24 -08:00
"dotnet",
"dart",
"executiontime",
2022-06-05 07:32:37 -07:00
"flutter",
2022-06-05 07:30:39 -07:00
"fossil",
2022-08-17 09:12:18 -07:00
"gcp",
"git",
2022-08-26 11:58:48 -07:00
"gitversion",
2020-11-23 10:34:24 -08:00
"go",
"haskell",
"ipify",
"iterm",
"julia",
2021-03-27 09:04:09 -07:00
"java",
"kotlin",
2022-07-18 21:38:38 -07:00
"kubectl",
"lua",
2023-01-09 16:47:05 -08:00
"mercurial",
"node",
"npm",
2022-05-26 05:51:26 -07:00
"nx",
"os",
"owm",
"path",
2022-07-08 03:21:08 -07:00
"perl",
"python",
"php",
"plastic",
"project",
"root",
"ruby",
"rust",
"r",
2023-02-16 06:18:21 -08:00
"sapling",
"session",
"sitecore",
"spotify",
"status",
"shell",
"sysinfo",
2021-12-29 23:57:27 -08:00
"strava",
2022-06-05 07:33:13 -07:00
"svn",
"swift",
"time",
"text",
"terraform",
"ui5tooling",
2023-02-26 06:37:37 -08:00
"unity",
"upgrade",
2021-12-11 08:31:58 -08:00
"wakatime",
"winreg",
2022-07-17 12:11:23 -07:00
"withings",
2022-11-05 05:22:05 -07:00
"xmake",
"ytm"
2020-11-23 10:34:24 -08:00
]
},
"style": {
"title": "Segment Style",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#style",
"anyOf": [
{
"enum": [
"plain",
"powerline",
"diamond",
"accordion"
]
},
{
"type": "string"
}
]
2022-12-27 12:41:17 -08:00
},
2022-05-14 12:18:03 -07:00
"foreground": {
"$ref": "#/definitions/color"
},
"foreground_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
2022-05-14 12:18:03 -07:00
},
"background": {
"$ref": "#/definitions/color"
},
"background_templates": {
"$ref": "#/definitions/templates",
"description": "https://ohmyposh.dev/docs/configuration/colors#color-templates"
2020-11-23 10:34:24 -08:00
},
2022-03-27 01:12:47 -07:00
"template": {
"type": "string",
"title": "Template text",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/templates",
2022-03-27 01:12:47 -07:00
"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
},
2020-11-23 10:34:24 -08:00
"properties": {
"type": "object",
"title": "Segment Properties, used to change behavior/displaying",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#properties",
2020-11-23 10:34:24 -08:00
"default": {},
"properties": {
2021-02-27 20:05:51 -08:00
"include_folders": {
"type": "array",
"title": "If specified, segment will only render in these folders",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#include--exclude-folders",
2021-02-27 20:05:51 -08:00
"default": [],
"items": {
"type": "string"
}
},
"exclude_folders": {
2020-11-23 10:34:24 -08:00
"type": "array",
2021-02-27 20:05:51 -08:00
"title": "Exclude rendering in these folders",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#include--exclude-folders",
2020-11-23 10:34:24 -08:00
"default": [],
"items": {
"type": "string"
}
2021-02-27 20:05:51 -08:00
},
"ignore_folders": {
"type": "array",
"title": "Deprecated - please use `exclude_folders` instead",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#include--exclude-folders",
2021-02-27 20:05:51 -08:00
"default": [],
"items": {
"type": "string"
},
"deprecated": true
2020-11-23 10:34:24 -08:00
}
}
2022-05-14 12:18:03 -07:00
},
"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": ""
2020-11-23 10:34:24 -08:00
}
},
"allOf": [
2022-03-11 06:28:25 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "project"
}
2022-03-11 06:28:25 -08:00
}
},
"then": {
"title": "Project Segment",
"description": "https://ohmyposh.dev/docs/segments/project"
2022-03-11 06:28:25 -08:00
}
},
2022-03-10 09:41:48 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "npm"
}
2022-03-10 09:41:48 -08:00
}
},
"then": {
"title": "NPM Segment",
"description": "https://ohmyposh.dev/docs/segments/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"
}
}
}
}
2022-03-10 09:41:48 -08:00
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"style": {
"const": "powerline"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"properties": {
"powerline_symbol": {
"type": "string",
"title": "Powerline Symbol",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#powerline-symbol",
2020-11-23 10:34:24 -08:00
"default": "\uE0B0"
},
"invert_powerline": {
"type": "boolean",
"title": "Flip the Powerline symbol vertically",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#invert-powerline",
2020-11-23 10:34:24 -08:00
"default": false
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"style": {
"const": "diamond"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"properties": {
"leading_diamond": {
"type": "string",
"title": "Leading diamond",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#leading-diamond",
2020-11-23 10:34:24 -08:00
"default": ""
},
"trailing_diamond": {
"type": "string",
"title": "Trailing diamond",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/segment#trailing-diamond",
2020-11-23 10:34:24 -08:00
"default": ""
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "az"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Azure Segment",
"description": "https://ohmyposh.dev/docs/segments/az",
"properties": {
"properties": {
"properties": {
"source": {
"type": "string",
"title": "Source",
"description": "https://ohmyposh.dev/docs/segments/az#properties",
"default": "first_match",
"enum": [
"first_match",
"cli",
"pwsh"
]
}
}
}
}
2020-11-23 10:34:24 -08:00
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "battery"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Battery Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/battery",
2020-11-23 10:34:24 -08:00
"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",
2020-11-23 10:34:24 -08:00
"default": ""
},
"discharging_icon": {
"type": "string",
"title": "discharging Dcon",
"description": "Text/icon to display when discharging",
2020-11-23 10:34:24 -08:00
"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",
2020-11-23 10:34:24 -08:00
"default": ""
}
2020-11-23 10:34:24 -08:00
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "command"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Command Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/command",
2020-11-23 10:34:24 -08:00
"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": ""
2020-11-23 10:34:24 -08:00
}
}
}
}
}
},
{
"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"
}
}
}
}
}
},
2022-07-15 01:17:37 -07:00
{
"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"
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "dotnet"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Dotnet Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/dotnet",
2020-11-23 10:34:24 -08:00
"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"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "status"
2022-05-14 12:18:03 -07:00
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Status Segment",
"description": "https://ohmyposh.dev/docs/segments/status",
2020-11-23 10:34:24 -08:00
"properties": {
"properties": {
"properties": {
"always_enabled": {
"type": "boolean",
"title": "Always Enabled",
"description": "Always show the status",
"default": false
}
}
}
}
}
},
2022-06-05 07:32:37 -07:00
{
"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"
}
}
}
}
}
},
2022-06-05 07:30:39 -07:00
{
"if": {
"properties": {
"type": {
"const": "fossil"
}
}
},
"then": {
"title": "Fossil Segment",
"description": "https://ohmyposh.dev/docs/segments/fossil"
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "git"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Git Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/git",
2020-11-23 10:34:24 -08:00
"properties": {
"properties": {
"properties": {
2021-11-08 22:02:27 -08:00
"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
},
2020-11-23 10:34:24 -08:00
"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"
2020-11-23 10:34:24 -08:00
},
"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"
2020-11-23 10:34:24 -08:00
},
"branch_behind_icon": {
"type": "string",
"title": "Branch Behind Icon",
"description": "The icon to display when the local branch is behind its remote",
"default": "\u2193"
2020-11-23 10:34:24 -08:00
},
"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"
},
2021-07-29 12:51:09 -07:00
"revert_icon": {
"type": "string",
"title": "Revert Icon",
"description": "Icon/text to display before the context when doing a revert",
"default": "\uF0E2"
},
2020-11-23 10:34:24 -08:00
"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"
},
2020-11-23 10:34:24 -08:00
"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"
},
2023-08-30 12:08:54 -07:00
"codecommit_icon": {
"type": "string",
"title": "CodeCommit Icon",
"description": "Icon/text to display when the upstream is CodeCommit",
"default": "\uF270"
},
2020-11-23 10:34:24 -08:00
"git_icon": {
"type": "string",
"title": "Git Icon",
"description": "Icon/text to display when the upstream is not known/mapped",
"default": "\uE5FB"
},
2021-08-02 22:58:59 -07:00
"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"
}
},
"fetch_user": {
"type": "boolean",
"title": "Fetch the user",
"description": "Fetch the current configured user for the repository",
"default": false
},
"status_formats": {
"$ref": "#/definitions/status_formats"
2021-08-02 22:58:59 -07:00
}
2020-11-23 10:34:24 -08:00
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "go"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Golang Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/golang",
2020-11-23 10:34:24 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
2021-05-14 12:26:26 -07:00
"$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
2021-05-14 12:26:26 -07:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "dart"
}
2021-05-14 12:26:26 -07:00
}
},
"then": {
"title": "Dart Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/dart",
2021-05-14 12:26:26 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2021-05-14 12:26:26 -07:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2020-11-23 10:34:24 -08:00
}
}
}
2021-05-14 04:39:49 -07:00
}
}
},
2022-09-18 00:01:52 -07:00
{
"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"
}
}
}
}
}
},
2021-05-14 04:39:49 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "crystal"
}
2021-05-14 04:39:49 -07:00
}
},
"then": {
"title": "Crystal Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/crystal",
2021-05-14 04:39:49 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2021-05-14 04:39:49 -07:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2021-05-14 04:39:49 -07:00
}
}
}
2020-11-23 10:34:24 -08:00
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "julia"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Julia Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/julia",
2020-11-23 10:34:24 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
2021-03-17 00:16:19 -07:00
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2021-03-17 00:16:19 -07:00
}
}
}
}
}
},
2022-07-08 03:21:08 -07:00
{
"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"
}
}
}
}
}
},
2021-10-27 01:52:56 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "php"
}
2021-10-27 01:52:56 -07:00
}
},
"then": {
"title": "PHP Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/php",
2021-10-27 01:52:56 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2021-10-27 01:52:56 -07:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2021-10-27 01:52:56 -07:00
}
}
}
}
}
},
2021-03-17 00:16:19 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "java"
}
2021-03-17 00:16:19 -07:00
}
},
"then": {
"title": "Java Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/java",
2021-03-17 00:16:19 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2021-03-17 00:16:19 -07:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
},
2020-10-25 08:32:14 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "ruby"
}
2020-10-25 08:32:14 -07:00
}
},
"then": {
"title": "Ruby Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/ruby",
2020-10-25 08:32:14 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2020-10-25 08:32:14 -07:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
2021-07-04 13:53:10 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "rust"
}
2021-07-04 13:53:10 -07:00
}
},
"then": {
"title": "Rust Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/rust",
2021-07-04 13:53:10 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2021-07-04 13:53:10 -07:00
},
2022-11-05 05:22:05 -07:00
"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"
},
2021-07-04 13:53:10 -07:00
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
}
}
}
}
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "kubectl"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Kubectl Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/kubectl",
2021-02-12 03:49:37 -08:00
"properties": {
"properties": {
"properties": {
2021-02-12 12:39:20 -08:00
"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
2023-07-14 04:51:25 -07:00
},
"context_aliases": {
"type": "object",
"title": "Context aliases",
"description": "Custom context names.",
"default": {}
2021-02-12 03:49:37 -08:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "aws"
}
2021-02-12 03:49:37 -08:00
}
},
"then": {
"title": "AWS Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/aws",
2021-02-12 03:49:37 -08:00
"properties": {
"properties": {
"properties": {
2021-03-21 07:04:23 -07:00
"display_default": {
"type": "boolean",
"title": "Display Default User Profile",
"description": "Display the segment when default user or not",
"default": true
2021-02-12 03:49:37 -08:00
}
}
}
}
2020-11-23 10:34:24 -08:00
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "node"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Node Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/node",
2020-11-23 10:34:24 -08:00
"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": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "azfunc"
}
}
},
"then": {
"title": "Azure Function Segment",
2022-05-23 01:14:14 -07:00
"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"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "os"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Operating System Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/os",
2020-11-23 10:34:24 -08:00
"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
},
2020-11-23 10:34:24 -08:00
"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"
},
2022-11-22 11:38:30 -08:00
"redhat": {
"type": "string",
"title": "Redhat Icon",
"description": "The icon to use for Redhat",
"default": "\uF316"
},
2020-11-23 10:34:24 -08:00
"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"
},
"android": {
"type": "string",
"title": "Android Icon",
"description": "The icon to use for Alma",
"default": "\uf17b"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "path"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Path Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/path",
2020-11-23 10:34:24 -08:00
"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",
2020-11-23 10:34:24 -08:00
"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",
2020-11-23 10:34:24 -08:00
"short",
"full",
"folder",
"mixed",
"letter",
"unique",
"powerlevel"
2020-11-23 10:34:24 -08:00
],
"default": "folder"
},
"mapped_locations": {
"type": "object",
2020-11-23 10:34:24 -08:00
"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
2021-12-17 13:48:41 -08:00
},
"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
},
2022-03-01 01:01:58 -08:00
"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
2022-02-28 21:39:52 -08:00
},
"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
},
"folder_format": {
"type": "string",
"title": "The folder format",
"description": "Golang string format to apply to the folder name",
"pattern": ".*%s.*"
},
"edge_format": {
"type": "string",
"title": "The format to use on the start and end folder",
"description": "Golang string format to apply to the start and end folder",
"pattern": ".*%s.*"
2022-01-22 10:46:56 -08:00
}
2020-11-23 10:34:24 -08:00
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "python"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
2021-03-21 07:04:23 -07:00
"title": "Python Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/python",
2020-11-23 10:34:24 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2021-12-04 02:56:55 -08:00
"fetch_virtual_env": {
2020-11-23 10:34:24 -08:00
"type": "boolean",
2021-12-04 02:56:55 -08:00
"title": "Fetch Virtual Env",
"description": "Fetch the name of the virtualenv or not",
2020-11-23 10:34:24 -08:00
"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"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
},
2023-07-19 22:57:11 -07:00
{
"if": {
"properties": {
"type": {
"const": "quasar"
}
}
},
"then": {
"title": "Quasar Segment",
"description": "https://ohmyposh.dev/docs/segments/quasar",
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
},
"fetch_dependencies": {
"type": "boolean",
"title": "Fetch Dependencies",
"description": "Fetch the vite and @quasar/app-vite dependency information or not",
"default": true
}
}
}
}
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "root"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Root Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/root"
2020-11-23 10:34:24 -08:00
}
},
2023-02-16 06:18:21 -08:00
{
"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
},
"status_formats": {
"$ref": "#/definitions/status_formats"
2023-02-16 06:18:21 -08:00
}
}
}
}
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "session"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Session Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/session",
2020-11-23 10:34:24 -08:00
"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": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "shell"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Shell Segment",
2022-05-23 01:14:14 -07:00
"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": {}
}
}
}
}
2020-11-23 10:34:24 -08:00
}
},
2023-05-03 12:43:20 -07:00
{
"if": {
"properties": {
"type": {
"const": "sitecore"
}
}
},
"then": {
"title": "Sitecore Segment",
"description": "https://ohmyposh.dev/docs/segments/sitecore",
"properties": {
"properties": {
"properties": {
"display_default": {
"type": "boolean",
"title": "Display Default",
"description": "Display the segment or not when the Sitecore environment name matches `default`",
"default": true
}
}
}
}
2023-05-03 12:43:20 -07:00
}
},
2020-11-23 10:34:24 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "spotify"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Spotify Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/spotify",
2020-11-23 10:34:24 -08:00
"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": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "terraform"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Terraform Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/terraform"
2020-11-23 10:34:24 -08:00
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "text"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Text Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/text",
2020-11-23 10:34:24 -08:00
"properties": {
"properties": {
"properties": {
"text": {
"type": "string",
"title": "Text",
"description": "Text/icon to display",
"default": ""
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "time"
}
2020-11-23 10:34:24 -08:00
}
},
"then": {
"title": "Time Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/time",
2020-11-23 10:34:24 -08:00
"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": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "ytm"
}
}
},
"then": {
"title": "YouTube Music Desktop App Segment",
2022-05-23 01:14:14 -07:00
"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"
}
}
}
}
}
2020-12-06 13:03:40 -08:00
},
2021-08-15 12:11:02 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "owm"
}
2021-08-15 12:11:02 -07:00
}
},
"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": {
2022-07-17 12:11:23 -07:00
"$ref": "#/definitions/cache_timeout"
2021-08-15 12:11:02 -07:00
}
}
}
}
}
},
{
"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"
}
}
}
}
}
},
2020-12-06 13:03:40 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "executiontime"
}
2020-12-06 13:03:40 -08:00
}
},
"then": {
"title": "Displays the execution time of the previously executed command",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/executiontime",
2020-12-06 13:03:40 -08:00
"properties": {
"properties": {
"properties": {
"always_enabled": {
"type": "boolean",
"title": "Always Enabled",
"description": "Always show the duration",
"default": false
},
2020-12-06 13:03:40 -08:00
"threshold": {
"type": "number",
"title": "Threshold",
"description": "minimum duration (milliseconds) required to enable this segment",
"default": 500
2020-12-10 07:02:45 -08:00
},
"style": {
"type": "string",
"title": "Style",
"description": "The style in which the time will be displayed",
"enum": [
"austin",
"roundrock",
"dallas",
"galveston",
"galvestonms",
2020-12-10 07:02:45 -08:00
"houston",
2021-05-20 23:22:21 -07:00
"amarillo",
2023-06-20 02:51:45 -07:00
"round",
"lucky7"
2020-12-10 07:02:45 -08:00
],
"default": "austin"
2020-12-06 13:03:40 -08:00
}
}
}
}
}
2021-03-27 09:04:09 -07:00
},
2021-09-03 11:54:19 -07:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "sysinfo"
}
2021-09-03 11:54:19 -07:00
}
},
"then": {
"title": "Get sysinfo",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/sysinfo",
2021-09-03 11:54:19 -07:00
"properties": {
"properties": {
"properties": {
"precision": {
"type": "integer",
"title": "Precision",
"description": "number of decimal places to show",
"default": 0
}
}
}
}
}
2021-10-13 00:05:29 -07:00
},
2021-12-29 23:57:27 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "strava"
}
2021-12-29 23:57:27 -08:00
}
},
"then": {
"title": "Display training data from Strava",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/strava",
2021-12-29 23:57:27 -08:00
"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"
2021-12-29 23:57:27 -08:00
},
"run_icon": {
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\ue213"
2021-12-29 23:57:27 -08:00
},
"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": {
2022-07-17 12:11:23 -07:00
"$ref": "#/definitions/cache_timeout"
},
"access_token": {
"$ref": "#/definitions/access_token"
},
"refresh_token": {
"$ref": "#/definitions/refresh_token"
},
"expires_in": {
"$ref": "#/definitions/expires_in"
2021-12-29 23:57:27 -08:00
}
}
}
}
}
},
2021-10-13 00:05:29 -07:00
{
"if": {
2022-06-05 07:33:13 -07:00
"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
},
"status_formats": {
"$ref": "#/definitions/status_formats"
2022-06-05 07:33:13 -07:00
}
}
}
}
}
},
{
"if": {
2021-10-13 00:05:29 -07:00
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "angular"
}
2021-10-13 00:05:29 -07:00
}
},
"then": {
"title": "Angular CLI Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/angular",
2021-10-13 00:05:29 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2021-10-13 00:05:29 -07:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2021-10-13 00:05:29 -07:00
}
}
}
}
}
2021-11-23 09:31:02 -08:00
},
2022-05-26 05:51:26 -07:00
{
"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"
}
}
}
}
}
},
2021-12-11 08:31:58 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "wakatime"
}
2021-12-11 08:31:58 -08:00
}
},
"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": {
2022-07-17 12:11:23 -07:00
"$ref": "#/definitions/cache_timeout"
2021-12-11 08:31:58 -08:00
}
}
}
}
}
},
2021-11-24 04:47:30 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "winreg"
}
2021-11-24 04:47:30 -08:00
}
},
"then": {
"title": "Windows Registry Query",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/winreg",
2021-11-24 04:47:30 -08:00
"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.",
2021-11-24 04:47:30 -08:00
"default": ""
2021-11-15 13:21:41 -08:00
},
2021-11-28 15:34:37 -08:00
"fallback": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Fallback value",
"description": "Value to display if registry value cannot be retrieved",
"default": ""
2021-11-24 04:47:30 -08:00
}
}
}
}
}
},
2022-07-17 12:11:23 -07:00
{
"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": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "plastic"
}
}
},
"then": {
"title": "Plastic SCM Segment",
2022-05-23 01:14:14 -07:00
"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
},
"status_formats": {
"$ref": "#/definitions/status_formats"
}
}
}
}
}
2021-12-14 23:49:32 -08:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "brewfather"
}
2021-12-14 23:49:32 -08:00
}
},
"then": {
"title": "Brewfather Batch Status",
"description": "https://ohmyposh.dev/docs/segments/brewfather",
2021-12-14 23:49:32 -08:00
"properties": {
"properties": {
"properties": {
"user_id": {
"type": "string",
"title": "Brewfather UserID (required)",
"description": "Provided by Brewfather's Generate API Key settings option",
"default": ""
},
"api_key": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Brewfather API Key (required)",
"description": "Provided by Brewfather's Generate API Key settings option",
"default": ""
2021-12-14 23:49:32 -08:00
},
"batch_id": {
2022-03-01 01:01:58 -08:00
"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": ""
2021-12-14 23:49:32 -08:00
},
"day_icon": {
2022-03-01 01:01:58 -08:00
"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": {
2022-07-17 12:11:23 -07:00
"$ref": "#/definitions/cache_timeout"
},
"doubleup_icon": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"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": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Icon for batch in planning",
"description": "Available in template as .StatusIcon",
"default": "\uF8EA"
},
"brewing_status_icon": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Icon for batch being brewed",
"description": "Available in template as .StatusIcon",
"default": "\uF7DE"
},
"fermenting_status_icon": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Icon for batch fermenting",
"description": "Available in template as .StatusIcon",
"default": "\uF499"
},
"conditioning_status_icon": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Icon for batch conditioning",
"description": "Available in template as .StatusIcon",
"default": "\uE372"
},
"completed_status_icon": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Icon for completed batch",
"description": "Available in template as .StatusIcon",
"default": "\uF7A5"
},
"archived_status_icon": {
2022-03-01 01:01:58 -08:00
"type": "string",
"title": "Icon for archived batch",
"description": "Available in template as .StatusIcon",
"default": "\uF187"
2021-12-14 23:49:32 -08:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "ipify"
}
}
},
"then": {
"title": "Display your external IP Address",
2022-05-23 01:14:14 -07:00
"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": {
2022-07-17 12:11:23 -07:00
"$ref": "#/definitions/cache_timeout"
}
}
}
}
}
2022-02-08 00:11:00 -08:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "haskell"
}
2022-02-08 00:11:00 -08:00
}
},
"then": {
"title": "Haskell Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/haskell",
2022-02-08 00:11:00 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-02-08 00:11:00 -08:00
"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"
},
2022-02-08 00:11:00 -08:00
"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"
],
2022-02-08 00:11:00 -08:00
"default": "never"
}
}
}
}
}
2022-02-13 23:41:33 -08:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "ui5tooling"
}
2022-02-13 23:41:33 -08:00
}
},
"then": {
"title": "UI5 tooling CLI segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/ui5tooling",
2022-02-13 23:41:33 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-02-13 23:41:33 -08:00
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2022-02-16 08:23:40 -08:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2022-02-16 08:23:40 -08:00
}
}
}
}
}
},
2023-02-26 06:37:37 -08:00
{
"if": {
"properties": {
"type": {
"const": "unity"
}
2023-02-26 06:37:37 -08:00
}
},
"then": {
"title": "Unity Segment",
"description": "https://ohmyposh.dev/docs/segments/unity",
2023-02-26 06:37:37 -08:00
"properties": {
"properties": {
"properties": {
"http_timeout": {
"$ref": "#/definitions/http_timeout"
}
}
}
}
}
},
{
"if": {
"properties": {
"type": {
"const": "upgrade"
}
}
},
"then": {
"title": "Upgrade Segment",
"description": "https://ohmyposh.dev/docs/segments/upgrade",
"properties": {
"properties": {
"properties": {
"cache_timeout": {
"$ref": "#/definitions/cache_timeout"
}
}
}
}
}
},
2023-01-08 23:44:47 -08:00
{
"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"
}
}
}
}
}
},
2022-02-16 08:23:40 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "cf"
}
2022-02-16 08:23:40 -08:00
}
},
"then": {
"title": "Clound Foundry CLI segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/cf",
2022-02-16 08:23:40 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-02-16 08:23:40 -08:00
"fetch_version": {
"$ref": "#/definitions/fetch_version"
2022-02-13 23:41:33 -08:00
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
},
"version_url_template": {
"$ref": "#/definitions/version_url_template"
2022-02-13 23:41:33 -08:00
}
}
}
}
}
2022-02-19 05:45:21 -08:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "cftarget"
}
2022-02-19 05:45:21 -08:00
}
},
"then": {
"title": "Clound Foundry Target segment",
2023-03-28 11:15:07 -07:00
"description": "https://ohmyposh.dev/docs/segments/cftarget",
"properties": {
"properties": {
"properties": {
"display_mode": {
"$ref": "#/definitions/display_mode"
}
}
}
}
2022-02-19 05:45:21 -08:00
}
2022-03-01 01:01:58 -08:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "kotlin"
}
2022-03-01 01:01:58 -08:00
}
},
"then": {
"title": "Kotlin Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/kotlin",
2022-03-01 01:01:58 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-03-01 01:01:58 -08:00
"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"
2022-03-02 17:38:09 -08:00
}
}
}
}
}
},
2022-07-18 21:38:38 -07:00
{
"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"
],
2022-07-18 21:38:38 -07:00
"default": "lua"
}
}
}
}
}
},
2022-03-02 17:38:09 -08:00
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "swift"
}
2022-03-02 17:38:09 -08:00
}
},
"then": {
"title": "Swift Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/swift",
2022-03-02 17:38:09 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-03-02 17:38:09 -08:00
"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"
2022-03-06 13:52:12 -08:00
}
}
}
}
}
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "cds"
}
2022-03-06 13:52:12 -08:00
}
},
"then": {
"title": "CDS (SAP CAP) segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/cds",
2022-03-06 13:52:12 -08:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-03-06 13:52:12 -08:00
"fetch_version": {
"$ref": "#/definitions/fetch_version"
},
"display_mode": {
"$ref": "#/definitions/display_mode"
},
"missing_command_text": {
"$ref": "#/definitions/missing_command_text"
2022-03-01 01:01:58 -08:00
}
}
}
}
}
2022-03-19 01:06:06 -07:00
},
{
"if": {
"properties": {
2022-05-14 12:18:03 -07:00
"type": {
"const": "r"
}
2022-03-19 01:06:06 -07:00
}
},
"then": {
"title": "R Segment",
2022-05-23 01:14:14 -07:00
"description": "https://ohmyposh.dev/docs/segments/r",
2022-03-19 01:06:06 -07:00
"properties": {
"properties": {
"properties": {
"home_enabled": {
"$ref": "#/definitions/home_enabled"
},
2022-03-19 01:06:06 -07:00
"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"
2022-03-19 01:06:06 -07:00
}
}
}
}
}
2022-08-17 09:12:18 -07:00
},
{
"if": {
"properties": {
"type": {
"const": "gcp"
}
}
},
"then": {
"title": "GCP Segment",
"description": "https://ohmyposh.dev/docs/segments/gcp"
}
2022-08-26 11:58:48 -07:00
},
{
"if": {
"properties": {
"type": {
"const": "gitversion"
}
2022-08-26 11:58:48 -07:00
}
},
"then": {
"title": "Display GitVersion segment",
"description": "https://ohmyposh.dev/docs/segments/gitversion"
}
2023-01-09 16:47:05 -08:00
},
{
"if": {
"properties": {
"type": {
"const": "mercurial"
}
2023-01-09 16:47:05 -08:00
}
},
"then": {
"title": "Mercurial Segment",
"description": "https://ohmyposh.dev/docs/segments/mercurial",
2023-01-09 16:47:05 -08:00
"properties": {
"properties": {
"properties": {
"fetch_status": {
"type": "boolean",
"title": "Display Status",
"description": "Display the local changes or not",
"default": true
},
"status_formats": {
"$ref": "#/definitions/status_formats"
2023-01-09 16:47:05 -08:00
}
}
}
}
}
2020-11-23 10:34:24 -08:00
}
]
}
},
"required": [
"blocks"
],
2020-11-23 10:34:24 -08:00
"properties": {
"final_space": {
"type": "boolean",
2020-12-27 02:56:33 -08:00
"title": "Final Space",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/overview#general-settings",
2020-11-23 10:34:24 -08:00
"default": true
},
"disable_cursor_positioning": {
"type": "boolean",
"title": "Disable Cursor Positioning",
"description": "https://ohmyposh.dev/docs/configuration/overview#general-settings",
"default": false
},
"shell_integration": {
"type": "boolean",
"title": "FTCS command marks for shell integration",
"default": false
},
2022-07-13 04:53:55 -07:00
"pwd": {
"type": "string",
"title": "Enable OSC99/7/51",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/overview#general-settings",
2022-07-13 04:53:55 -07:00
"default": ""
2021-02-15 13:19:19 -08:00
},
2020-12-27 02:56:33 -08:00
"console_title_template": {
"type": "string",
"title": "Console Title Template",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/title#console-title-template",
2020-12-27 02:56:33 -08:00
"default": "{{ .Shell }} in {{ .Folder }}"
},
2022-05-14 12:18:03 -07:00
"terminal_background": {
"$ref": "#/definitions/color"
},
2020-11-23 10:34:24 -08:00
"blocks": {
"type": "array",
"title": "Block array",
"default": [],
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/overview#blocks",
2022-05-14 12:18:03 -07:00
"items": {
"$ref": "#/definitions/block"
}
2021-06-13 10:41:56 -07:00
},
"tooltips": {
"type": "array",
"title": "Tooltip list, prompt elements to display based on context",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/tooltips",
2021-06-13 10:41:56 -07:00
"default": [],
"items": {
2022-05-14 12:18:03 -07:00
"allOf": [
{
"$ref": "#/definitions/segment"
}
],
2021-06-13 10:41:56 -07:00
"properties": {
"tips": {
"type": "array",
"title": "The commands for which you want the segment to show",
"items": {
"type": "string"
}
}
},
"required": [
"tips"
]
2021-06-13 10:41:56 -07:00
}
2021-06-15 12:23:08 -07:00
},
"transient_prompt": {
2022-02-19 07:49:26 -08:00
"$ref": "#/definitions/extra_prompt",
"title": "Transient Prompt Setting",
2023-04-15 08:53:18 -07:00
"description": "https://ohmyposh.dev/docs/configuration/transient",
"properties": {
"filler": {
"type": "string",
"title": "Filler",
"description": "Right aligned filler text, will span the remaining width"
}
}
2022-02-19 07:49:26 -08:00
},
"valid_line": {
"$ref": "#/definitions/extra_prompt",
"title": "Valid Line Setting (for PowerShell only)",
"description": "https://ohmyposh.dev/docs/configuration/line-error"
2022-02-19 07:49:26 -08:00
},
"error_line": {
"$ref": "#/definitions/extra_prompt",
"title": "Error Line Setting (for PowerShell only)",
"description": "https://ohmyposh.dev/docs/configuration/line-error"
},
2022-02-20 04:56:28 -08:00
"secondary_prompt": {
"$ref": "#/definitions/extra_prompt",
"title": "Secondary Prompt Setting",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/secondary-prompt"
2022-02-20 04:56:28 -08:00
},
"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",
2022-04-23 08:34:00 -07:00
"description": "https://ohmyposh.dev/docs/configuration/colors#palette",
"default": {},
"patternProperties": {
2022-05-14 12:18:03 -07:00
".*": {
"$ref": "#/definitions/color"
}
}
2022-05-22 00:11:16 -07:00
},
2022-10-13 11:01:51 -07:00
"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"
2022-10-13 11:01:51 -07:00
}
}
}
}
},
"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"
}
}
}
},
2022-05-22 00:11:16 -07:00
"accent_color": {
"title": "Accent color",
"$ref": "#/definitions/color"
2020-11-23 10:34:24 -08:00
}
}
}