2020-11-23 10:34:24 -08:00
{
"$schema" : "http://json-schema.org/draft-07/schema" ,
"$id" : "http://example.com/example.json" ,
"type" : "object" ,
2021-06-05 10:27:33 -07:00
"title" : "The Oh My Posh theme definition" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview" ,
2020-11-23 10:34:24 -08:00
"definitions" : {
"color" : {
2021-11-22 06:25:56 -08:00
"anyOf" : [
{ "$ref" : "#/definitions/color_string" } ,
{ "$ref" : "#/definitions/palette_reference" }
]
} ,
"color_string" : {
2020-11-23 10:34:24 -08:00
"type" : "string" ,
2021-11-06 05:13:45 -07:00
"pattern" : "^(#([a-fA-F0-9]{6}|[a-fA-F0-9]{3})|black|red|green|yellow|blue|magenta|cyan|white|default|darkGray|lightRed|lightGreen|lightYellow|lightBlue|lightMagenta|lightCyan|lightWhite|transparent|parentBackground|parentForeground|background|foreground)$" ,
2020-11-23 10:34:24 -08:00
"title" : "Color string" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-colors" ,
2021-02-21 23:16:00 -08:00
"format" : "color"
2020-11-23 10:34:24 -08:00
} ,
2021-11-22 06:25:56 -08:00
"palette_reference" : {
"type" : "string" ,
"pattern" : "^p:.*$" ,
"title" : "Palette reference" ,
"description" : "https://ohmyposh.dev/docs/config-colors#palette"
} ,
2021-02-15 03:58:03 -08:00
"color_templates" : {
"type" : "array" ,
"title" : "Templates to define a color" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#foreground-templates" ,
2021-02-15 03:58:03 -08:00
"default" : [ ] ,
"items" : {
2022-01-22 10:46:56 -08:00
"$ref" : "#/definitions/template"
2021-02-15 03:58:03 -08:00
}
} ,
2021-12-04 04:06:05 -08:00
"fetch_version" : {
2020-11-23 10:34:24 -08:00
"type" : "boolean" ,
2021-12-04 04:06:05 -08:00
"title" : "Fetch Version" ,
"description" : "Fetch the version number" ,
2020-11-23 10:34:24 -08:00
"default" : true
} ,
2021-08-17 23:21:55 -07:00
"http_timeout" : {
"type" : "integer" ,
2022-01-22 02:41:38 -08:00
"title" : "Http request timeout" ,
2021-08-17 23:21:55 -07:00
"description" : "Timeout value to use for http request" ,
"default" : 20
} ,
2020-12-27 23:33:58 -08:00
"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" ,
2021-01-15 10:28:46 -08:00
"enum" : [ "always" , "files" , "environment" , "context" ] ,
2020-12-27 23:33:58 -08:00
"default" : "context"
} ,
"missing_command_text" : {
"type" : "string" ,
"title" : "Missing command text" ,
"description" : "The string to display when the command is not available" ,
"default" : ""
} ,
2021-02-12 03:49:37 -08:00
"template" : {
2022-01-22 10:46:56 -08:00
"type" : "string" ,
"title" : "Template text" ,
2022-01-28 04:42:34 -08:00
"description" : "https://ohmyposh.dev/docs/config-templates" ,
2022-01-22 10:46:56 -08:00
"default" : ""
2021-02-12 03:49:37 -08:00
} ,
2020-11-23 10:34:24 -08:00
"block" : {
"type" : "object" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#block" ,
2020-11-23 10:34:24 -08:00
"allOf" : [
2020-12-17 23:59:45 -08:00
{
"if" : {
"properties" : {
"type" : { "const" : "prompt" }
}
2020-11-23 10:34:24 -08:00
} ,
2020-12-17 23:59:45 -08:00
"then" : {
2020-11-23 10:34:24 -08:00
"required" : [ "type" , "alignment" , "segments" ] ,
"title" : "Prompt definition, contains 1 or more segments to render"
}
2020-12-17 23:59:45 -08:00
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "rprompt" }
}
} ,
"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
}
2020-11-23 10:34:24 -08:00
}
] ,
"properties" : {
"type" : {
"type" : "string" ,
"title" : "Block type" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#type" ,
2021-04-18 10:16:06 -07:00
"enum" : [ "prompt" , "rprompt" ] ,
2020-11-23 10:34:24 -08:00
"default" : "prompt"
} ,
"alignment" : {
"type" : "string" ,
"title" : "Block alignment" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#alignment" ,
2020-11-23 10:34:24 -08:00
"enum" : [ "left" , "right" ] ,
"default" : "left"
} ,
2021-04-18 10:16:06 -07:00
"newline" : {
"type" : "boolean" ,
"title" : "Newline" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#newline" ,
2021-04-18 10:16:06 -07:00
"default" : false
} ,
2020-11-23 10:34:24 -08:00
"vertical_offset" : {
"type" : "integer" ,
"title" : "Block vertical offset" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#vertical-offset"
2020-11-23 10:34:24 -08:00
} ,
"horizontal-offset" : {
"type" : "integer" ,
"title" : "Block vertical offset" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#horizontal-offset"
2020-11-23 10:34:24 -08:00
} ,
"segments" : {
"type" : "array" ,
"title" : "Segments list, prompt elements to display based on context" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#segment" ,
2020-11-23 10:34:24 -08:00
"default" : [ ] ,
"items" : { "$ref" : "#/definitions/segment" }
}
}
} ,
"segment" : {
"type" : "object" ,
"title" : "A segment" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#segment" ,
2020-11-23 10:34:24 -08:00
"default" : { } ,
2021-02-15 03:58:03 -08:00
"required" : [ "type" , "style" ] ,
2020-11-23 10:34:24 -08:00
"properties" : {
"type" : {
"type" : "string" ,
"title" : "Segment Type" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#type-1" ,
2020-11-23 10:34:24 -08:00
"enum" : [
"session" ,
"path" ,
"git" ,
"exit" ,
"python" ,
"root" ,
"time" ,
"text" ,
"command" ,
"battery" ,
"spotify" ,
"shell" ,
"node" ,
"os" ,
"az" ,
"kubectl" ,
"dotnet" ,
"terraform" ,
"go" ,
2020-11-19 19:12:20 -08:00
"julia" ,
2020-10-25 08:32:14 -07:00
"ruby" ,
2020-12-06 13:03:40 -08:00
"ytm" ,
2021-02-12 03:49:37 -08:00
"executiontime" ,
2021-03-17 00:16:19 -07:00
"aws" ,
2021-03-27 09:04:09 -07:00
"java" ,
2021-04-11 11:07:41 -07:00
"poshgit" ,
2021-05-14 04:39:49 -07:00
"azfunc" ,
2021-05-14 12:26:26 -07:00
"crystal" ,
2021-07-04 13:53:10 -07:00
"dart" ,
2021-08-17 23:21:55 -07:00
"rust" ,
2021-09-03 11:54:19 -07:00
"owm" ,
2021-11-13 14:46:06 -08:00
"sysinfo" ,
2021-12-29 23:57:27 -08:00
"strava" ,
2021-11-08 09:58:51 -08:00
"angular" ,
2021-11-23 09:31:02 -08:00
"php" ,
2021-12-11 08:31:58 -08:00
"wakatime" ,
2021-11-24 04:47:30 -08:00
"wifi" ,
2021-12-11 13:08:47 -08:00
"winreg" ,
2021-12-23 05:58:18 -08:00
"plastic" ,
"ipify"
2020-11-23 10:34:24 -08:00
]
} ,
"style" : {
"type" : "string" ,
"title" : "Segment Style" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#style" ,
2020-11-23 10:34:24 -08:00
"enum" : [ "powerline" , "plain" , "diamond" ]
} ,
"foreground" : { "$ref" : "#/definitions/color" } ,
2021-02-15 03:58:03 -08:00
"foreground_templates" : { "$ref" : "#/definitions/color_templates" } ,
2020-11-23 10:34:24 -08:00
"background" : { "$ref" : "#/definitions/color" } ,
2021-02-15 03:58:03 -08:00
"background_templates" : { "$ref" : "#/definitions/color_templates" } ,
2020-11-23 10:34:24 -08:00
"properties" : {
"type" : "object" ,
"title" : "Segment Properties, used to change behavior/displaying" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#properties" ,
2020-11-23 10:34:24 -08:00
"default" : { } ,
"properties" : {
"prefix" : {
"type" : "string" ,
"title" : "Text prefix" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#prefix" ,
2020-11-23 10:34:24 -08:00
"default" : " "
} ,
"postfix" : {
"type" : "string" ,
"title" : "Text postfix" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#postfix" ,
2020-11-23 10:34:24 -08:00
"default" : " "
} ,
2022-01-22 10:46:56 -08:00
"template" : {
"$ref" : "#/definitions/template"
} ,
2021-02-27 20:05:51 -08:00
"include_folders" : {
"type" : "array" ,
"title" : "If specified, segment will only render in these folders" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#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" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#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" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#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
}
}
}
} ,
"allOf" : [
{
"if" : {
"properties" : {
"style" : { "const" : "powerline" }
}
} ,
"then" : {
"properties" : {
"powerline_symbol" : {
"type" : "string" ,
"title" : "Powerline Symbol" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#powerline-symbol" ,
2020-11-23 10:34:24 -08:00
"default" : "\uE0B0"
} ,
"invert_powerline" : {
"type" : "boolean" ,
"title" : "Flip the Powerline symbol vertically" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#invert-powerline" ,
2020-11-23 10:34:24 -08:00
"default" : false
}
}
}
} ,
{
"if" : {
"properties" : {
"style" : { "const" : "diamond" }
}
} ,
"then" : {
"properties" : {
"leading_diamond" : {
"type" : "string" ,
"title" : "Leading diamond" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#leading-diamond" ,
2020-11-23 10:34:24 -08:00
"default" : ""
} ,
"trailing_diamond" : {
"type" : "string" ,
"title" : "Trailing diamond" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#trailing-diamond" ,
2020-11-23 10:34:24 -08:00
"default" : ""
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "az" }
}
} ,
"then" : {
"title" : "Azure Segment" ,
2022-01-22 10:46:56 -08:00
"description" : "https://ohmyposh.dev/docs/az"
2020-11-23 10:34:24 -08:00
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "battery" }
}
} ,
"then" : {
"title" : "Battery Segment" ,
"description" : "https://ohmyposh.dev/docs/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 on the left when charging" ,
"default" : ""
} ,
"discharging_icon" : {
"type" : "string" ,
"title" : "discharging Dcon" ,
"description" : "Text/icon to display on the left when discharging" ,
"default" : ""
} ,
"charged_icon" : {
"type" : "string" ,
"title" : "Charged Icon" ,
2021-10-25 09:08:25 -07:00
"description" : "Text/icon to display on the left when fully charged" ,
2020-11-23 10:34:24 -08:00
"default" : ""
2020-12-03 22:01:08 -08:00
}
2020-11-23 10:34:24 -08:00
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "command" }
}
} ,
"then" : {
"title" : "Command Segment" ,
"description" : "https://ohmyposh.dev/docs/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" : "echo no command specified"
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "dotnet" }
}
} ,
"then" : {
"title" : "Dotnet Segment" ,
"description" : "https://ohmyposh.dev/docs/dotnet" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2020-12-27 23:33:58 -08: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" : {
"type" : { "const" : "exit" }
}
} ,
"then" : {
"title" : "Exit Segment" ,
"description" : "https://ohmyposh.dev/docs/exit" ,
"properties" : {
"properties" : {
"properties" : {
"always_enabled" : {
"type" : "boolean" ,
"title" : "Always Enabled" ,
"description" : "Always show the status" ,
"default" : false
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "git" }
}
} ,
"then" : {
"title" : "Git Segment" ,
"description" : "https://ohmyposh.dev/docs/git" ,
"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
} ,
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" ,
2021-04-24 10:47:54 -07:00
"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" ,
2021-04-24 10:47:54 -07:00
"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" ,
2021-04-24 10:47:54 -07:00
"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"
} ,
2021-08-02 11:07:37 -07:00
"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"
} ,
2021-05-15 07:47:10 -07:00
"azure_devops_icon" : {
"type" : "string" ,
"title" : "Azure DevOps Icon" ,
"description" : "Icon/text to display when the upstream is Azure DevOps" ,
"default" : "\uFD03"
} ,
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" : {
2021-08-17 23:21:55 -07:00
"type" : "integer" ,
"title" : "Branch max length" ,
"description" : "the max length for the displayed branch name where 0 implies full length" ,
"default" : 0
2021-08-02 22:58:59 -07:00
}
2020-11-23 10:34:24 -08:00
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "go" }
}
} ,
"then" : {
"title" : "Golang Segment" ,
"description" : "https://ohmyposh.dev/docs/golang" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2020-12-27 23:33:58 -08:00
} ,
2021-12-13 13:35:42 -08:00
"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
} ,
2020-12-27 23:33:58 -08:00
"display_mode" : {
2021-05-14 12:26:26 -07:00
"$ref" : "#/definitions/display_mode"
} ,
"missing_command_text" : {
"$ref" : "#/definitions/missing_command_text"
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "dart" }
}
} ,
"then" : {
"title" : "Dart Segment" ,
"description" : "https://ohmyposh.dev/docs/dart" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2021-05-14 12:26:26 -07:00
} ,
"display_mode" : {
2020-12-27 23:33:58 -08:00
"$ref" : "#/definitions/display_mode"
} ,
"missing_command_text" : {
"$ref" : "#/definitions/missing_command_text"
2020-11-23 10:34:24 -08:00
}
}
}
2021-05-14 04:39:49 -07:00
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "crystal" }
}
} ,
"then" : {
"title" : "Crystal Segment" ,
"description" : "https://ohmyposh.dev/docs/crystal" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"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"
}
}
}
2020-11-23 10:34:24 -08:00
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "julia" }
}
} ,
"then" : {
"title" : "Julia Segment" ,
"description" : "https://ohmyposh.dev/docs/julia" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2020-12-27 23:33:58 -08:00
} ,
"display_mode" : {
"$ref" : "#/definitions/display_mode"
} ,
"missing_command_text" : {
2021-03-17 00:16:19 -07:00
"$ref" : "#/definitions/missing_command_text"
}
}
}
}
}
} ,
2021-10-27 01:52:56 -07:00
{
"if" : {
"properties" : {
"type" : { "const" : "php" }
}
} ,
"then" : {
"title" : "PHP Segment" ,
"description" : "https://ohmyposh.dev/docs/php" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"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"
}
}
}
}
}
} ,
2021-03-17 00:16:19 -07:00
{
"if" : {
"properties" : {
"type" : { "const" : "java" }
}
} ,
"then" : {
2021-10-16 22:49:43 -07:00
"title" : "Java Segment" ,
2021-03-17 00:16:19 -07:00
"description" : "https://ohmyposh.dev/docs/java" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2021-03-17 00:16:19 -07:00
} ,
"display_mode" : {
"$ref" : "#/definitions/display_mode"
} ,
"missing_command_text" : {
2020-12-27 23:33:58 -08:00
"$ref" : "#/definitions/missing_command_text"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
} ,
2020-10-25 08:32:14 -07:00
{
"if" : {
"properties" : {
"type" : { "const" : "ruby" }
}
} ,
"then" : {
"title" : "Ruby Segment" ,
"description" : "https://ohmyposh.dev/docs/ruby" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"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" : {
"type" : { "const" : "rust" }
}
} ,
"then" : {
"title" : "Rust Segment" ,
"description" : "https://ohmyposh.dev/docs/rust" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"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" : {
"type" : { "const" : "kubectl" }
}
} ,
"then" : {
"title" : "Kubectl Segment" ,
2021-02-12 03:49:37 -08:00
"description" : "https://ohmyposh.dev/docs/kubectl" ,
"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
2021-11-21 07:02:51 -08:00
} ,
"parse_kubeconfig" : {
"type" : "boolean" ,
"title" : "Parse kubeconfig" ,
"description" : "Parse kubeconfig files instead of calling out to kubectl to improve performance." ,
"default" : false
2021-02-12 03:49:37 -08:00
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "aws" }
}
} ,
"then" : {
"title" : "AWS Segment" ,
"description" : "https://ohmyposh.dev/docs/aws" ,
"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" : {
"type" : { "const" : "node" }
}
} ,
"then" : {
"title" : "Node Segment" ,
"description" : "https://ohmyposh.dev/docs/node" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2021-04-11 11:07:41 -07:00
} ,
"display_mode" : {
"$ref" : "#/definitions/display_mode"
} ,
"missing_command_text" : {
"$ref" : "#/definitions/missing_command_text"
2021-04-17 04:47:28 -07:00
} ,
2021-12-04 04:06:05 -08:00
"fetch_package_manager" : {
2021-04-17 04:47:28 -07:00
"type" : "boolean" ,
2021-12-04 04:06:05 -08:00
"title" : "Fetch Display Package Manager" ,
"description" : "Assigns the Yarn or NPM icon to .PackageManagerIcon" ,
2021-04-17 04:47:28 -07:00
"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"
2021-04-11 11:07:41 -07:00
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "azfunc" }
}
} ,
"then" : {
"title" : "Azure Function Segment" ,
"description" : "https://ohmyposh.dev/docs/azfunc" ,
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2020-12-27 23:33:58 -08: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" : {
"type" : { "const" : "os" }
}
} ,
"then" : {
"title" : "Operating System Segment" ,
"description" : "https://ohmyposh.dev/docs/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"
} ,
2021-02-25 21:51:03 -08:00
"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"
} ,
"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"
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "path" }
}
} ,
"then" : {
"title" : "Path Segment" ,
"description" : "https://ohmyposh.dev/docs/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 con 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" ,
2020-12-17 03:10:01 -08:00
"agnoster_short" ,
2021-12-11 11:37:14 -08:00
"agnoster_left" ,
2020-11-23 10:34:24 -08:00
"short" ,
"full" ,
2021-02-28 00:32:06 -08:00
"folder" ,
2021-07-13 11:15:53 -07:00
"mixed" ,
"letter"
2020-11-23 10:34:24 -08:00
] ,
"default" : "folder"
} ,
"mapped_locations" : {
2021-06-07 23:31:35 -07:00
"type" : "object" ,
2020-11-23 10:34:24 -08:00
"title" : "Mapped Locations" ,
"description" : "Custom glyph/text for specific paths" ,
2021-06-07 23:31:35 -07:00
"default" : { }
2021-08-20 08:06:37 -07:00
} ,
"max_depth" : {
"type" : "integer" ,
"title" : "Maximum Depth" ,
2022-02-06 21:56:01 -08:00
"description" : "Maximum path depth to display without shortening" ,
2021-08-20 08:06:37 -07:00
"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-02-06 21:56:01 -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-01-22 10:46:56 -08:00
}
2020-11-23 10:34:24 -08:00
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "python" }
}
} ,
"then" : {
2021-03-21 07:04:23 -07:00
"title" : "Python Segment" ,
2020-11-23 10:34:24 -08:00
"description" : "https://ohmyposh.dev/docs/python" ,
"properties" : {
"properties" : {
"properties" : {
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
2020-12-21 11:16:33 -08:00
} ,
"display_mode" : {
2020-12-27 23:33:58 -08:00
"$ref" : "#/definitions/display_mode"
} ,
"missing_command_text" : {
"$ref" : "#/definitions/missing_command_text"
2020-11-23 10:34:24 -08:00
}
}
}
}
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "root" }
}
} ,
"then" : {
"title" : "Root Segment" ,
2022-01-22 10:46:56 -08:00
"description" : "https://ohmyposh.dev/docs/root"
2020-11-23 10:34:24 -08:00
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "session" }
}
} ,
"then" : {
"title" : "Session Segment" ,
"description" : "https://ohmyposh.dev/docs/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" ,
2021-09-17 12:48:00 -07:00
"description" : "https://ohmyposh.dev/docs/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
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "spotify" }
}
} ,
"then" : {
"title" : "Spotify Segment" ,
"description" : "https://ohmyposh.dev/docs/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/terraform"
}
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "text" }
}
} ,
"then" : {
"title" : "Text Segment" ,
"description" : "https://ohmyposh.dev/docs/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/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"
}
}
}
}
}
2020-11-19 19:12:20 -08:00
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "ytm" }
}
} ,
"then" : {
"title" : "YouTube Music Desktop App Segment" ,
"description" : "https://ohmyposh.dev/docs/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" ,
2021-04-20 12:35:22 -07:00
"default" : "http://127.0.0.1:9863"
2021-08-17 23:21:55 -07:00
} ,
"http_timeout" : {
"$ref" : "#/definitions/http_timeout"
2020-11-19 19:12:20 -08:00
}
}
}
}
}
2020-12-06 13:03:40 -08:00
} ,
2021-08-15 12:11:02 -07:00
{
"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" ,
2021-08-20 08:00:35 -07:00
"default" : "standard" ,
2021-09-18 02:30:52 -07:00
"enum" : [ "standard" , "metric" , "imperial" ]
2021-08-17 23:21:55 -07:00
} ,
"http_timeout" : {
"$ref" : "#/definitions/http_timeout"
2021-09-23 22:26:42 -07:00
} ,
"cache_timeout" : {
"type" : "integer" ,
"title" : "cache timeout" ,
"description" : "The number of minutes the response is cached. A value of 0 disables the cache." ,
"default" : 10
2021-08-15 12:11:02 -07:00
}
}
}
}
}
} ,
2020-12-06 13:03:40 -08:00
{
"if" : {
"properties" : {
"type" : { "const" : "executiontime" }
}
} ,
"then" : {
"title" : "Displays the execution time of the previously executed command" ,
"description" : "https://ohmyposh.dev/docs/executiontime" ,
"properties" : {
"properties" : {
"properties" : {
2020-12-12 03:53:06 -08:00
"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" ,
"houston" ,
2021-05-20 23:22:21 -07:00
"amarillo" ,
"round"
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
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "poshgit" }
}
} ,
"then" : {
"title" : "Posh-Git Segment" ,
"description" : "https://ohmyposh.dev/docs/poshgit"
}
2021-09-03 11:54:19 -07:00
} ,
{
"if" : {
"properties" : {
2021-11-13 14:46:06 -08:00
"type" : { "const" : "sysinfo" }
2021-09-03 11:54:19 -07:00
}
} ,
"then" : {
2021-11-13 14:46:06 -08:00
"title" : "Get sysinfo" ,
"description" : "https://ohmyposh.dev/docs/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" : {
"type" : { "const" : "strava" }
}
} ,
"then" : {
"title" : "Display training data from Strava" ,
"description" : "https://ohmyposh.dev/docs/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" : "\uf5a2"
} ,
"run_icon" : {
"type" : "string" ,
"title" : "Alternative icon" ,
"description" : "Alternative icon for this activity type" ,
"default" : "\ufc0c"
} ,
"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" : {
"type" : "integer" ,
"title" : "cache timeout" ,
"description" : "The number of minutes the response is cached. A value of 0 disables the cache." ,
"default" : 10
}
}
}
}
}
} ,
2021-10-13 00:05:29 -07:00
{
"if" : {
"properties" : {
2021-11-08 09:58:51 -08:00
"type" : { "const" : "angular" }
2021-10-13 00:05:29 -07:00
}
} ,
"then" : {
"title" : "Angular CLI Segment" ,
2021-11-08 09:58:51 -08:00
"description" : "https://ohmyposh.dev/docs/angular" ,
2021-10-13 00:05:29 -07:00
"properties" : {
"properties" : {
"properties" : {
2021-12-04 04:06:05 -08:00
"fetch_version" : {
"$ref" : "#/definitions/fetch_version"
2021-10-13 00:05:29 -07:00
} ,
"display_mode" : {
"$ref" : "#/definitions/display_mode"
}
}
}
}
}
2021-11-23 09:31:02 -08:00
} ,
2021-12-11 08:31:58 -08:00
{
"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" : {
"type" : "integer" ,
"title" : "cache timeout" ,
"description" : "The number of minutes the response is cached. A value of 0 disables the cache." ,
"default" : 10
}
}
}
}
}
} ,
2021-11-23 09:31:02 -08:00
{
"if" : {
"properties" : {
"type" : { "const" : "wifi" }
}
} ,
"then" : {
"title" : "WiFi Segment" ,
2022-01-22 10:46:56 -08:00
"description" : "https://ohmyposh.dev/docs/wifi"
2021-11-23 09:31:02 -08:00
}
2021-11-24 04:47:30 -08:00
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "winreg" }
}
} ,
"then" : {
"title" : "Windows Registry Query" ,
"description" : "https://ohmyposh.dev/docs/winreg" ,
"properties" : {
"properties" : {
"properties" : {
"path" : {
"type" : "string" ,
"title" : "Registry Path" ,
2021-12-04 13:11:25 -08:00
"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" : {
2021-11-15 13:21:41 -08:00
"type" : "string" ,
2021-11-28 15:34:37 -08:00
"title" : "Fallback value" ,
"description" : "Value to display if registry value cannot be retrieved" ,
"default" : ""
2021-11-24 04:47:30 -08:00
}
}
}
}
}
2021-12-11 13:08:47 -08:00
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "plastic" }
}
} ,
"then" : {
"title" : "Plastic SCM Segment" ,
"description" : "https://ohmyposh.dev/docs/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
}
}
}
}
}
2021-12-14 23:49:32 -08:00
} ,
{
"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"
2021-12-16 01:55:47 -08:00
} ,
"http_timeout" : {
"$ref" : "#/definitions/http_timeout"
} ,
"cache_timeout" : {
"type" : "integer" ,
"title" : "cache timeout in minutes" ,
"description" : "The number of minutes the response is cached. A value of 0 disables the cache." ,
"default" : 5
} ,
"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"
2021-12-14 23:49:32 -08:00
}
}
}
}
}
2021-12-23 05:58:18 -08:00
} ,
{
"if" : {
"properties" : {
"type" : { "const" : "ipify" }
}
} ,
"then" : {
"title" : "Display your external IP Address" ,
"description" : "https://ohmyposh.dev/docs/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" : {
"type" : "integer" ,
"title" : "cache timeout" ,
"description" : "The number of minutes the response is cached. A value of 0 disables the cache." ,
"default" : 10
}
}
}
}
}
2020-11-23 10:34:24 -08:00
}
]
}
} ,
"required" : [ "blocks" ] ,
"properties" : {
"final_space" : {
"type" : "boolean" ,
2020-12-27 02:56:33 -08:00
"title" : "Final Space" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#general-settings" ,
2020-11-23 10:34:24 -08:00
"default" : true
} ,
2021-02-15 13:19:19 -08:00
"osc99" : {
"type" : "boolean" ,
"title" : "Enable OSC99" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#general-settings" ,
2021-02-15 13:19:19 -08:00
"default" : false
} ,
2020-11-23 10:34:24 -08:00
"console_title" : {
"type" : "boolean" ,
2020-12-27 02:56:33 -08:00
"title" : "Console Title" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview#general-settings" ,
2020-11-23 10:34:24 -08:00
"default" : true
} ,
"console_title_style" : {
"type" : "string" ,
2020-12-27 02:56:33 -08:00
"title" : "Console Title Style" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-title#console-title-style" ,
2020-12-27 02:56:33 -08:00
"enum" : [ "folder" , "path" , "template" ] ,
2020-11-23 10:34:24 -08:00
"default" : "folder"
} ,
2020-12-27 02:56:33 -08:00
"console_title_template" : {
"type" : "string" ,
"title" : "Console Title Template" ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-title#console-title-template" ,
2020-12-27 02:56:33 -08:00
"default" : "{{ .Shell }} in {{ .Folder }}"
} ,
2021-03-14 06:14:08 -07:00
"terminal_background" : { "$ref" : "#/definitions/color" } ,
2020-11-23 10:34:24 -08:00
"blocks" : {
"type" : "array" ,
"title" : "Block array" ,
"default" : [ ] ,
2021-11-12 10:14:16 -08:00
"description" : "https://ohmyposh.dev/docs/config-overview" ,
2020-11-23 10:34:24 -08: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" ,
"description" : "https://ohmyposh.dev/docs/beta#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" ]
}
2021-06-15 12:23:08 -07:00
} ,
"transient_prompt" : {
"type" : "object" ,
"title" : "Transient Prompt Settings" ,
"description" : "https://ohmyposh.dev/docs/beta#transient-prompt" ,
"default" : { } ,
"properties" : {
"template" : {
"type" : "string" ,
"title" : "Transient Prompt Template" ,
"default" : "{{ .Shell }}> <#f7dc66>{{ .Command }}</>"
} ,
"background" : { "$ref" : "#/definitions/color" } ,
"foreground" : { "$ref" : "#/definitions/color" }
}
2021-11-22 06:25:56 -08:00
} ,
"palette" : {
"type" : "object" ,
"title" : "Palette" ,
"description" : "https://ohmyposh.dev/docs/config-colors#palette" ,
"default" : { } ,
"patternProperties" : {
".*" : { "$ref" : "#/definitions/color" }
}
2020-11-23 10:34:24 -08:00
}
}
2021-08-17 23:21:55 -07:00
}