fix(font): migrate away from material icons

resolves #3818
This commit is contained in:
Jan De Dobbeleer 2023-05-09 11:08:45 +02:00 committed by Jan De Dobbeleer
parent dbd37a7bd1
commit c57975985f
110 changed files with 277 additions and 277 deletions

View file

@ -325,7 +325,7 @@ func defaultConfig(env platform.Environment, warning bool) *Config {
TrailingDiamond: "\ue0b0",
Background: "p:yellow",
Foreground: "p:black",
Template: " {{ if .SSHSession }}\U000f0318 {{ end }}{{ .UserName }} ",
Template: " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }} ",
},
{
Type: PATH,
@ -336,7 +336,7 @@ func defaultConfig(env platform.Environment, warning bool) *Config {
Properties: properties.Map{
properties.Style: "folder",
},
Template: " \U000f024b {{ path .Path .Location }} ",
Template: " \uea83 {{ path .Path .Location }} ",
},
{
Type: GIT,
@ -396,7 +396,7 @@ func defaultConfig(env platform.Environment, warning bool) *Config {
Style: Plain,
Background: "transparent",
Foreground: "p:green",
Template: "\U000f0399 ",
Template: "\ue718 ",
Properties: properties.Map{
segments.HomeEnabled: false,
segments.FetchPackageManager: false,
@ -408,7 +408,7 @@ func defaultConfig(env platform.Environment, warning bool) *Config {
Style: Plain,
Background: "transparent",
Foreground: "p:blue",
Template: "\U000f07d3 ",
Template: "\ue626 ",
Properties: properties.Map{
properties.FetchVersion: false,
},

View file

@ -206,7 +206,7 @@ func (ir *ImageRenderer) loadFonts() error {
// Download font if not cached
if data == nil {
url := "https://github.com/ryanoasis/nerd-fonts/releases/latest/download/Hack.zip"
url := "https://github.com/ryanoasis/nerd-fonts/releases/download/v3.0.0/Hack.zip"
var err error
data, err = fontCLI.Download(url)

View file

@ -109,7 +109,7 @@ func (segment *Segment) migrationOne(env platform.Environment) {
case SESSION:
hasTemplate := segment.hasProperty(segmentTemplate)
segment.migrateTemplate()
segment.migrateIconOverride("ssh_icon", "\U000f0318 ")
segment.migrateIconOverride("ssh_icon", "\ueba9 ")
template := segment.Properties.GetString(segmentTemplate, segment.writer.Template())
template = strings.ReplaceAll(template, ".ComputerName", ".HostName")
if !segment.Properties.GetBool(properties.Property("display_host"), true) {

View file

@ -280,7 +280,7 @@ func TestSegmentTemplateMigration(t *testing.T) {
},
{
Case: "SESSION no HOST",
Expected: " {{ if .SSHSession }}\U000f0318 {{ end }}{{ .UserName }} ",
Expected: " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }} ",
Type: SESSION,
Props: properties.Map{
"display_host": false,
@ -288,7 +288,7 @@ func TestSegmentTemplateMigration(t *testing.T) {
},
{
Case: "SESSION no USER",
Expected: " {{ if .SSHSession }}\U000f0318 {{ end }}{{ .HostName }} ",
Expected: " {{ if .SSHSession }}\ueba9 {{ end }}{{ .HostName }} ",
Type: SESSION,
Props: properties.Map{
"display_user": false,
@ -296,7 +296,7 @@ func TestSegmentTemplateMigration(t *testing.T) {
},
{
Case: "SESSION no USER nor HOST",
Expected: " {{ if .SSHSession }}\U000f0318 {{ end }} ",
Expected: " {{ if .SSHSession }}\ueba9 {{ end }} ",
Type: SESSION,
Props: properties.Map{
"display_user": false,
@ -305,7 +305,7 @@ func TestSegmentTemplateMigration(t *testing.T) {
},
{
Case: "SESSION - Color overrides",
Expected: " {{ if .SSHSession }}\U000f0318 {{ end }}<#123456>{{ .UserName }}</>@<#789012>{{ .HostName }}</> ",
Expected: " {{ if .SSHSession }}\ueba9 {{ end }}<#123456>{{ .UserName }}</>@<#789012>{{ .HostName }}</> ",
Type: SESSION,
Props: properties.Map{
"user_color": "#123456",

View file

@ -19,7 +19,7 @@ const (
)
func (c *Connection) Template() string {
return " {{ if eq .Type \"wifi\"}}\uf1eb{{ else if eq .Type \"ethernet\"}}\U000f0200{{ end }} "
return " {{ if eq .Type \"wifi\"}}\uf1eb{{ else if eq .Type \"ethernet\"}}\ueba9{{ end }} "
}
func (c *Connection) Enabled() bool {

View file

@ -52,7 +52,7 @@ func TestConnection(t *testing.T) {
{
Case: "WiFi and Ethernet, enabled",
ConnectionType: "wifi|ethernet",
ExpectedString: "\U000f0200",
ExpectedString: "\ueba9",
ExpectedEnabled: true,
Connections: []*connectionResponse{
{

View file

@ -34,7 +34,7 @@ type Fossil struct {
}
func (f *Fossil) Template() string {
return " \U000f062c {{.Branch}} {{.Status.String}} "
return " \ue725 {{.Branch}} {{.Status.String}} "
}
func (f *Fossil) Enabled() bool {

View file

@ -781,8 +781,8 @@ func TestGitTemplateString(t *testing.T) {
},
{
Case: "Working and staging area changes with separator and stash count",
Expected: "main \uF046 +5 ~1 | \uF044 +2 ~3 \U000f0193 3",
Template: "{{ .HEAD }}{{ if .Staging.Changed }} \uF046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uF044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \U000f0193 {{ .StashCount }}{{ end }}", //nolint:lll
Expected: "main \uF046 +5 ~1 | \uF044 +2 ~3 \ueb4b 3",
Template: "{{ .HEAD }}{{ if .Staging.Changed }} \uF046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uF044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }}", //nolint:lll
Git: &Git{
HEAD: branchName,
Working: &GitStatus{

View file

@ -159,7 +159,7 @@ func (d *Owm) setStatus() error {
case "":
fallthrough
case "standard":
d.UnitIcon = "°K" // \U000f0506"
d.UnitIcon = "°K" // <b>K</b>"
}
return nil
}

View file

@ -75,7 +75,7 @@ func (n *Project) Enabled() bool {
}
func (n *Project) Template() string {
return " {{ if .Error }}{{ .Error }}{{ else }}{{ if .Version }}\uf487 {{.Version}} {{ end }}{{ if .Name }}{{ .Name }} {{ end }}{{ if .Target }}\U000f04fe {{.Target}} {{ end }}{{ end }}" //nolint:lll
return " {{ if .Error }}{{ .Error }}{{ else }}{{ if .Version }}\uf487 {{.Version}} {{ end }}{{ if .Name }}{{ .Name }} {{ end }}{{ if .Target }}\uf4de {{.Target}} {{ end }}{{ end }}" //nolint:lll
}
func (n *Project) Init(props properties.Properties, env platform.Environment) {

View file

@ -321,7 +321,7 @@ func TestDotnetProject(t *testing.T) {
HasFiles: true,
ProjectContents: "...<TargetFramework>net7.0</TargetFramework>...",
ExpectedEnabled: true,
ExpectedString: "Valid \U000f04fe net7.0",
ExpectedString: "Valid \uf4de net7.0",
},
{
Case: "valid .fsproj file",
@ -329,7 +329,7 @@ func TestDotnetProject(t *testing.T) {
HasFiles: true,
ProjectContents: "...<TargetFramework>net6.0</TargetFramework>...",
ExpectedEnabled: true,
ExpectedString: "Valid \U000f04fe net6.0",
ExpectedString: "Valid \uf4de net6.0",
},
{
Case: "valid .vbproj file",
@ -337,7 +337,7 @@ func TestDotnetProject(t *testing.T) {
HasFiles: true,
ProjectContents: "...<TargetFramework>net5.0</TargetFramework>...",
ExpectedEnabled: true,
ExpectedString: "Valid \U000f04fe net5.0",
ExpectedString: "Valid \uf4de net5.0",
},
{
Case: "invalid or empty contents",

View file

@ -22,7 +22,7 @@ func (s *Session) Enabled() bool {
}
func (s *Session) Template() string {
return " {{ if .SSHSession }}\U000f0318 {{ end }}{{ .UserName }}@{{ .HostName }} "
return " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}@{{ .HostName }} "
}
func (s *Session) Init(props properties.Properties, env platform.Environment) {

View file

@ -111,9 +111,9 @@ func (s *Strava) getActivityIcon() string {
case "VirtualRide":
fallthrough
case "Ride":
return s.props.GetString(RideIcon, "\U000f00a3")
return s.props.GetString(RideIcon, "\uf206")
case "Run":
return s.props.GetString(RunIcon, "\U000f070e")
return s.props.GetString(RunIcon, "\ue213")
case "NordicSki":
case "AlpineSki":
case "BackcountrySki":

View file

@ -46,7 +46,7 @@ func TestStravaSegment(t *testing.T) {
},
},
Template: "{{.Ago}} {{.Icon}}",
ExpectedString: "6h \U000f00a3",
ExpectedString: "6h \uf206",
ExpectedEnabled: true,
},
{
@ -60,7 +60,7 @@ func TestStravaSegment(t *testing.T) {
},
},
Template: "{{.Ago}} {{.Icon}}",
ExpectedString: "4d \U000f070e",
ExpectedString: "4d \ue213",
ExpectedEnabled: true,
},
{

View file

@ -23,7 +23,7 @@
"style": "folder"
},
"style": "powerline",
"template": " \udb80\ude4b {{ .Path }} ",
"template": " \uea83 {{ .Path }} ",
"type": "path"
},
{
@ -44,7 +44,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},
@ -56,7 +56,7 @@
"fetch_version": true
},
"style": "powerline",
"template": " \udb80\udf99 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"template": " \ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"type": "node"
},
{
@ -146,7 +146,7 @@
"always_enabled": true
},
"style": "plain",
"template": "<transparent>\ue0b0</> \udb81\udead{{ .FormattedMs }}\u2800",
"template": "<transparent>\ue0b0</> \ueba2{{ .FormattedMs }}\u2800",
"type": "executiontime"
},
{

View file

@ -23,7 +23,7 @@
"style": "folder"
},
"style": "powerline",
"template": " \udb80\ude4b {{ .Path }} ",
"template": " \uea83 {{ .Path }} ",
"type": "path"
},
{
@ -44,7 +44,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},
@ -56,7 +56,7 @@
"fetch_version": true
},
"style": "powerline",
"template": " \udb80\udf99 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"template": " \ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"type": "node"
},
{
@ -146,7 +146,7 @@
"always_enabled": true
},
"style": "plain",
"template": "<transparent>\ue0b0</> \udb81\udead{{ .FormattedMs }}\u2800",
"template": "<transparent>\ue0b0</> \ueba2{{ .FormattedMs }}\u2800",
"type": "executiontime"
},
{

View file

@ -34,7 +34,7 @@
"fetch_worktree_count": true
},
"style": "diamond",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],
@ -75,7 +75,7 @@
{
"foreground": "#81ff91",
"style": "diamond",
"template": "<#ffffff>\udb80\udddd</> <#ffffff>RAM:</> {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB ",
"template": "<#ffffff>\ue266</> <#ffffff>RAM:</> {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB ",
"type": "sysinfo"
}
],
@ -90,7 +90,7 @@
"leading_diamond": "<#00c7fc> \ue285 </><#ffafd2>{</>",
"properties": {
"folder_icon": "\uf07b",
"folder_separator_icon": "\udb81\udce1",
"folder_separator_icon": "\uebcb",
"home_icon": "home",
"style": "agnoster_full"
},

View file

@ -18,7 +18,7 @@
"foreground": "#ffffff",
"background": "#047e84",
"powerline_symbol": "\ue0b0",
"template": "{{ if .Env.PNPPSSITE }} \udb80\udd73 {{ .Env.PNPPSSITE }}{{ end }}"
"template": "{{ if .Env.PNPPSSITE }} \uf2dd {{ .Env.PNPPSSITE }}{{ end }}"
},
{
"type": "text",
@ -64,7 +64,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }}) ",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }}) ",
"type": "git"
},
{

View file

@ -27,7 +27,7 @@
"properties": {
"folder_icon": "\uf115",
"folder_separator_icon": " \ue0b1 ",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster"
},
"style": "powerline",

View file

@ -33,7 +33,7 @@
"properties": {
"folder_icon": "\uf115",
"folder_separator_icon": " \ue0b1 ",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster"
},
"style": "powerline",

View file

@ -7,7 +7,7 @@
{
"foreground": "#45F1C2",
"style": "plain",
"template": "\udb80\udc09 {{ .UserName }} on",
"template": "\ueb99 {{ .UserName }} on",
"type": "session"
},
{
@ -28,7 +28,7 @@
"fetch_upstream_icon": true
},
"style": "plain",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -25,11 +25,11 @@
"powerline_symbol": "\ue0b0",
"properties": {
"folder_icon": " \uf07b ",
"home_icon": "\udb80\udede",
"home_icon": "\ue617",
"style": "folder"
},
"style": "powerline",
"template": " \uf07b\udb80\udc54{{ .Path }} ",
"template": " \uf07b\uea9c{{ .Path }} ",
"type": "path"
},
{
@ -59,7 +59,7 @@
"threshold": 0
},
"style": "diamond",
"template": " \udb81\udd1f{{ .FormattedMs }}\u2800",
"template": " \ueba2{{ .FormattedMs }}\u2800",
"trailing_diamond": "\ue0b4",
"type": "executiontime"
}
@ -76,7 +76,7 @@
"properties": {
"fetch_package_manager": true,
"npm_icon": " <#cc3a3a>\ue5fa</> ",
"yarn_icon": " <#348cba>\udb80\udd1b</>"
"yarn_icon": " <#348cba>\ue6a7</>"
},
"style": "diamond",
"template": "\ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}",
@ -115,7 +115,7 @@
"foreground": "#06aad5",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "\udb81\udfd3 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4 ",
"type": "go"
},
@ -196,7 +196,7 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "\udb82\udc33 {{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}}",
"template": "\uf308 {{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}}",
"trailing_diamond": "\ue0b4",
"type": "kubectl"
},
@ -224,7 +224,7 @@
"invert_powerline": true,
"leading_diamond": "\ue0b2",
"properties": {
"charged_icon": "\udb85\udfe6 ",
"charged_icon": "\uf240 ",
"charging_icon": "\uf1e6 ",
"discharging_icon": "\ue234 "
},
@ -241,7 +241,7 @@
"time_format": "_2,15:04"
},
"style": "diamond",
"template": " \udb80\udcf0 {{ .CurrentDate | date .Format }} ",
"template": " \uf073 {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b4",
"type": "time"
}
@ -265,7 +265,7 @@
"always_enabled": true
},
"style": "plain",
"template": "\ue285\udb81\ude01 ",
"template": "\ue285\ueb9e ",
"type": "exit"
}
],

View file

@ -32,7 +32,7 @@
"properties": {
"fetch_package_manager": true,
"npm_icon": " <#cc3a3a>\ue5fa</> ",
"yarn_icon": " <#348cba>\udb80\udd1b</>"
"yarn_icon": " <#348cba>\ue6a7</>"
},
"style": "plain",
"template": "<#ffffff>(</>{{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}<#ffffff>)</>",
@ -135,7 +135,7 @@
"{{if eq \"Full\" .State.String}}#33DD2D{{end}}"
],
"properties": {
"charged_icon": "\udb85\udfe6 ",
"charged_icon": "\uf240 ",
"charging_icon": "\uf1e6 ",
"discharging_icon": "\ue234 "
},
@ -149,7 +149,7 @@
"time_format": "_2,15:04"
},
"style": "plain",
"template": "<#ffffff>[</>\udb80\udcf0{{ .CurrentDate | date .Format }}<#ffffff>]</>",
"template": "<#ffffff>[</>\uf073{{ .CurrentDate | date .Format }}<#ffffff>]</>",
"type": "time"
}
],
@ -182,7 +182,7 @@
"always_enabled": true
},
"style": "plain",
"template": "\ue285\udb81\ude01 ",
"template": "\ue285\ueb9e ",
"type": "exit"
}
],

View file

@ -23,9 +23,9 @@
"foreground": "#ffffff",
"leading_diamond": "<transparent,#01579B>\ue0b0</>",
"properties": {
"folder_icon": "\udb80\uddd8",
"folder_icon": "...",
"folder_separator_icon": "<transparent> \ue0bd </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster_short"
},
"style": "diamond",
@ -48,7 +48,7 @@
"fetch_status": true
},
"style": "powerline",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -34,7 +34,7 @@
"foreground": "#193549",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}\uf295 \udb80\udc84 ",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}\uf295 \ueb2d ",
"type": "battery"
},
{
@ -57,7 +57,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -81,7 +81,7 @@
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " \udb82\udc33 {{.Context}} :: {{if .Namespace}}{{.Namespace}}{{else}}default{{end}} ",
"template": " \uf308 {{.Context}} :: {{if .Namespace}}{{.Namespace}}{{else}}default{{end}} ",
"type": "kubectl"
},
{
@ -95,7 +95,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " \udb81\udf8f ",
"template": " \uea6c ",
"trailing_diamond": "\ue0b0",
"type": "exit"
}

View file

@ -57,7 +57,7 @@
"fetch_version": false
},
"style": "diamond",
"template": "\udb81\udfd3{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4",
"type": "go"
},

View file

@ -33,7 +33,7 @@
"fetch_upstream_icon": true
},
"style": "diamond",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},
@ -57,7 +57,7 @@
"fetch_version": false
},
"style": "diamond",
"template": "\udb81\udfd3{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4",
"type": "go"
},

View file

@ -48,7 +48,7 @@
"fetch_version": false
},
"style": "diamond",
"template": "\udb81\udfd3{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4",
"type": "go"
},

View file

@ -8,7 +8,7 @@
"background": "#003543",
"foreground": "#ffffff",
"style": "plain",
"template": " \udb82\udd54 {{ .CurrentDate | date .Format }} ",
"template": " \ue641 {{ .CurrentDate | date .Format }} ",
"type": "time"
},
{
@ -18,7 +18,7 @@
"always_enabled": true
},
"style": "plain",
"template": " \udb81\udd1f{{ .FormattedMs }} ",
"template": " \ueba2{{ .FormattedMs }} ",
"type": "executiontime"
}
],

View file

@ -53,7 +53,7 @@
"fetch_status": false,
"fetch_upstream_icon": false,
"merge_icon": "\ue727 ",
"no_commits_icon": "\udb80\udc95 ",
"no_commits_icon": "\uf0c3 ",
"rebase_icon": "\ue728 ",
"revert_icon": "\uf0e2 ",
"tag_icon": "\uf412 "

View file

@ -43,7 +43,7 @@
"fetch_status": false,
"fetch_upstream_icon": false,
"merge_icon": "\ue727 ",
"no_commits_icon": "\udb80\udc95 ",
"no_commits_icon": "\uf0c3 ",
"rebase_icon": "\ue728 ",
"revert_icon": "\uf0e2 ",
"tag_icon": "\uf412 "

View file

@ -43,7 +43,7 @@
"fetch_status": false,
"fetch_upstream_icon": false,
"merge_icon": "\ue727 ",
"no_commits_icon": "\udb80\udc95 ",
"no_commits_icon": "\uf0c3 ",
"rebase_icon": "\ue728 ",
"revert_icon": "\uf0e2 ",
"tag_icon": "\uf412 "

View file

@ -43,7 +43,7 @@
"fetch_status": false,
"fetch_upstream_icon": false,
"merge_icon": "\ue727 ",
"no_commits_icon": "\udb80\udc95 ",
"no_commits_icon": "\uf0c3 ",
"rebase_icon": "\ue728 ",
"revert_icon": "\uf0e2 ",
"tag_icon": "\uf412 "

View file

@ -43,7 +43,7 @@
"fetch_status": false,
"fetch_upstream_icon": false,
"merge_icon": "\ue727 ",
"no_commits_icon": "\udb80\udc95 ",
"no_commits_icon": "\uf0c3 ",
"rebase_icon": "\ue728 ",
"revert_icon": "\uf0e2 ",
"tag_icon": "\uf412 "

View file

@ -37,13 +37,13 @@
"background": "#491545",
"foreground": "#ffffff",
"properties": {
"paused_icon": "\udb80\udfe4 ",
"paused_icon": "\uf04c ",
"playing_icon": "\ue602 ",
"stopped_icon": "\uf04d ",
"track_separator": " - "
},
"style": "plain",
"template": " \udb81\udcc7 {{ .Icon }}{{ if ne .Status \"stopped\" }}{{ .Artist }} - {{ .Track }}{{ end }} ",
"template": " \uf1bc {{ .Icon }}{{ if ne .Status \"stopped\" }}{{ .Artist }} - {{ .Track }}{{ end }} ",
"type": "spotify"
},
{
@ -56,7 +56,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " \udb86\udca0 ",
"template": " \ueb05 ",
"trailing_diamond": "\ue0b4",
"type": "exit"
}

View file

@ -12,7 +12,7 @@
"properties": {
"macos": "\uf179 ",
"ubuntu": "\uf31b ",
"windows": "\udb80\udf72 "
"windows": "\ue62a "
},
"style": "diamond",
"template": " {{ if .WSL }}WSL at {{ end }}{{.Icon}}",
@ -33,7 +33,7 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": "\udb80\udf5b MEM: {{ round .PhysicalPercentUsed .Precision }}% | {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB \udb80\udf5b ",
"template": "\ue266 MEM: {{ round .PhysicalPercentUsed .Precision }}% | {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB \ue266 ",
"trailing_diamond": "<transparent,#516BEB>\ue0b2</>",
"type": "sysinfo"
},
@ -68,7 +68,7 @@
"fetch_worktree_count": true
},
"style": "diamond",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b0",
"type": "git"
}
@ -100,8 +100,8 @@
{
"properties": {
"folder_icon": "\uf07b ",
"folder_separator_icon": " \udb80\udc55 ",
"home_icon": "\udb80\udedc "
"folder_separator_icon": " \uf061 ",
"home_icon": "\ueb06 "
},
"style": "plain",
"template": " {{ .Path }} ",

View file

@ -27,7 +27,7 @@
},
"style": "powerline",
"powerline_symbol": "",
"template": " <p:symbol-color>\udb80\udd5f</> {{ dateInZone .Format .CurrentDate \"UTC\" }} ",
"template": " <p:symbol-color>\uebaa</> {{ dateInZone .Format .CurrentDate \"UTC\" }} ",
"type": "time"
},
{
@ -35,7 +35,7 @@
"foreground": "p:kubernetes-text",
"style": "powerline",
"powerline_symbol": "\ue0b4",
"template": "<p:symbol-color>\udb82\udc33</> {{.Context}}{{if .Namespace}} \uf061 {{.Namespace}}{{end}}",
"template": "<p:symbol-color>\uf308</> {{.Context}}{{if .Namespace}} \uf061 {{.Namespace}}{{end}}",
"type": "kubectl"
},
{
@ -93,7 +93,7 @@
},
"style": "powerline",
"powerline_symbol": "\ue0b4",
"template": " <p:symbol-color>\udb81\udead</> {{ .FormattedMs }}",
"template": " <p:symbol-color>\ueba2</> {{ .FormattedMs }}",
"type": "executiontime"
},
{
@ -104,7 +104,7 @@
},
"style": "powerline",
"powerline_symbol": "\ue0b4",
"template": "{{ if eq .Code 0 }} \udb82\udcd0 {{ end }}",
"template": "{{ if eq .Code 0 }} \uf004 {{ end }}",
"type": "exit"
},
{
@ -155,7 +155,7 @@
},
"style": "powerline",
"powerline_symbol": "\ue0b4",
"template": "{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -9,7 +9,7 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}@{{ .HostName }} ",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}@{{ .HostName }} ",
"trailing_diamond": "\ue0b0",
"type": "session"
},
@ -40,7 +40,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -83,8 +83,8 @@
"powerline_symbol": "\ue0b2",
"properties": {
"charged_icon": "\ue22f ",
"charging_icon": "\udb80\udc84 ",
"discharging_icon": "\udb80\udc83 "
"charging_icon": "\ueb2d ",
"discharging_icon": "\uf244 "
},
"style": "powerline",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}\uf295 ",
@ -96,7 +96,7 @@
"invert_powerline": true,
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": " \udb82\udd54 {{ .CurrentDate | date .Format }} ",
"template": " \ue641 {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b4",
"type": "time"
}
@ -112,7 +112,7 @@
"foreground": "#000000",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": " \udb82\udc33 Kubernetes {{.Context}} cluster {{if .Namespace}}- {{.Namespace}} namespace{{end}} ",
"template": " \uf308 Kubernetes {{.Context}} cluster {{if .Namespace}}- {{.Namespace}} namespace{{end}} ",
"trailing_diamond": "\ue0b0",
"type": "kubectl"
},

View file

@ -32,7 +32,7 @@
"fetch_status": true
},
"style": "diamond",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -53,7 +53,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -73,7 +73,7 @@
"threshold": 1
},
"style": "powerline",
"template": " <#fefefe>\udb81\udead</> {{ .FormattedMs }} ",
"template": " <#fefefe>\ueba2</> {{ .FormattedMs }} ",
"type": "executiontime"
},
{
@ -84,7 +84,7 @@
"foreground": "#242424",
"powerline_symbol": "\ue0b4",
"style": "powerline",
"template": " \udb86\udca0 ",
"template": " \ueb05 ",
"type": "exit"
}
],

View file

@ -34,7 +34,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \ue725 ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }}) ",
"template": " \ue725 ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }}) ",
"type": "git"
},
{

View file

@ -66,7 +66,7 @@
"fetch_status": true,
"fetch_upstream_icon": true
},
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
}

View file

@ -43,7 +43,7 @@
"fetch_upstream_icon": true
},
"style": "plain",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -34,7 +34,7 @@
"background": "#0057b7",
"foreground": "#FBD951",
"properties": {
"home_icon": "\udb80\udede",
"home_icon": "\ue617",
"style": "mixed"
},
"style": "diamond",
@ -52,7 +52,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \uf1d3 {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Staging.Changed) (.Working.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0}}\udb80\udd93 {{ .StashCount }}{{ end }}{{ if gt .WorktreeCount 0}} \uf1bb {{ .WorktreeCount }}{{ end }} ",
"template": " \uf1d3 {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Staging.Changed) (.Working.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0}}\ueb4b {{ .StashCount }}{{ end }}{{ if gt .WorktreeCount 0}} \uf1bb {{ .WorktreeCount }}{{ end }} ",
"type": "git"
},
{
@ -115,9 +115,9 @@
"invert_powerline": true,
"leading_diamond": "\ue0b2",
"properties": {
"charged_icon": "\udb80\udc84 ",
"charged_icon": "\ueb2d ",
"charging_icon": "\uf492 ",
"discharging_icon": "\udb80\udc8d "
"discharging_icon": "\uf243 "
},
"style": "diamond",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}% <#111111>\ue0b2</>",
@ -132,7 +132,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " \udb80\udd09 {{ .FormattedMs }} <#111111>\ue0b2</>",
"template": " \ueba2 {{ .FormattedMs }} <#111111>\ue0b2</>",
"type": "executiontime"
},
{
@ -144,7 +144,7 @@
"time_format": "_2,15:04"
},
"style": "diamond",
"template": " \udb80\udcf0 {{ .CurrentDate | date .Format }}",
"template": " \uf073 {{ .CurrentDate | date .Format }}",
"trailing_diamond": "\ue0b4",
"type": "time"
}
@ -185,7 +185,7 @@
"display_host": false
},
"style": "powerline",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }} ",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }} ",
"type": "session"
}
],

View file

@ -25,9 +25,9 @@
"foreground": "#ffffff",
"leading_diamond": "<transparent,#01579B>\ue0b0</>",
"properties": {
"folder_icon": "\udb80\uddd8",
"folder_icon": "...",
"folder_separator_icon": "<transparent> \ue0bd </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster_short"
},
"style": "diamond",
@ -50,7 +50,7 @@
"fetch_status": true
},
"style": "powerline",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -108,7 +108,7 @@
"threshold": 0
},
"style": "diamond",
"template": "\udb81\udd1f {{ .FormattedMs }}s ",
"template": "\ueba2 {{ .FormattedMs }}s ",
"type": "executiontime"
},
{

View file

@ -50,7 +50,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -80,7 +80,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " \udb86\udca0 ",
"template": " \ueb05 ",
"trailing_diamond": "\ue0b4",
"type": "exit"
}
@ -94,7 +94,7 @@
{
"foreground": "#f1184c",
"style": "plain",
"template": "\udb80\udec7 ",
"template": "\uf0a9 ",
"type": "text"
}
],

View file

@ -22,9 +22,9 @@
"background": "#5a3d29",
"foreground": "#43CCEA",
"properties": {
"folder_icon": "\udb80\uddd8",
"folder_icon": "...",
"folder_separator_icon": "<transparent> \ue0bd </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster_short"
},
"style": "plain",
@ -46,7 +46,7 @@
"fetch_status": true
},
"style": "diamond",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -83,7 +83,7 @@
"foreground": "#43CCEA",
"leading_diamond": "\ue0c5",
"style": "diamond",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}<transparent> / </>{{ .HostName }}",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}<transparent> / </>{{ .HostName }}",
"type": "session"
},
{

View file

@ -41,7 +41,7 @@
"branch_identical_icon": "\u25CF"
},
"style": "powerline",
"template": " {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},

View file

@ -21,7 +21,7 @@
"background": "#464646",
"foreground": "p:white",
"properties": {
"windows": "\udb80\udf72",
"windows": "\ue62a",
"linux": "\uf17c",
"ubuntu": "\uf31b",
"macos": "\uf179"
@ -94,7 +94,7 @@
"properties": {
"folder_icon": "\uf07b",
"folder_separator_template": "<#93d0ff> \u00bb </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster"
},
"style": "plain",

View file

@ -22,7 +22,7 @@
{
"foreground": "#7FD5EA",
"style": "powerline",
"template": "(\udb81\udfd3{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}) ",
"template": "(\ue626{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}) ",
"type": "go"
},
{

View file

@ -22,7 +22,7 @@
"opensuse": "\uf314",
"raspbian": "\uf315",
"ubuntu": "\uf31b ",
"windows": "\udb80\udf72 ",
"windows": "\ue62a ",
"wsl": "\ue712"
},
"style": "diamond",
@ -36,7 +36,7 @@
"style": "diamond",
"leading_diamond": "<transparent,#00c7fc>\ue0b0</>",
"properties": {
"template": " \udb80\udf5b CPU: {{ round .PhysicalPercentUsed .Precision }}% | "
"template": " \ue266 CPU: {{ round .PhysicalPercentUsed .Precision }}% | "
},
"type": "sysinfo"
},
@ -44,7 +44,7 @@
"background": "#00c7fc",
"foreground": "#000000",
"style": "diamond",
"template": "RAM: {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB \udb80\udf5b ",
"template": "RAM: {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB \ue266 ",
"trailing_diamond": "<transparent,#00c7fc>\ue0b2</>",
"type": "sysinfo"
},
@ -79,7 +79,7 @@
"fetch_worktree_count": true
},
"style": "diamond",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b0",
"type": "git"
}
@ -113,7 +113,7 @@
"time_format": "3:04:05 PM | Monday"
},
"style": "diamond",
"template": " \udb82\udd54 {{ .CurrentDate | date .Format }} \udb80\udcf0 ",
"template": " \ue641 {{ .CurrentDate | date .Format }} \uf073 ",
"trailing_diamond": "\ue0b0",
"type": "time"
},
@ -131,7 +131,7 @@
"leading_diamond": "<transparent,#F8677b>\ue0b0</>",
"properties": {
"folder_icon": "\uf07b ",
"folder_separator_icon": " \udb80\udc55 ",
"folder_separator_icon": " \uf061 ",
"home_icon": " ",
"style": "agnoster_full",
"template": " \ue5ff {{ .Path }} "

View file

@ -66,7 +66,7 @@
"fetch_upstream_icon": true
},
"style": "plain",
"template": "<#ff8800>on</> {{.UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#ff8800>on</> {{.UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -50,7 +50,7 @@
"fetch_status": true
},
"style": "powerline",
"template": " {{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -64,7 +64,7 @@
"always_enabled": true
},
"style": "powerline",
"template": " \udb81\udf8f ",
"template": " \uea6c ",
"type": "exit"
}
],
@ -84,7 +84,7 @@
"invert_powerline": true,
"powerline_symbol": "\ue0b2",
"style": "powerline",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}\uf295 \udb80\udc84 ",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}\uf295 \ueb2d ",
"type": "battery"
},
{
@ -106,7 +106,7 @@
"invert_powerline": true,
"powerline_symbol": "\ue0b2",
"style": "powerline",
"template": "<#fff> \udb82\udd54 </>{{ .CurrentDate | date .Format }} ",
"template": "<#fff> \ue641 </>{{ .CurrentDate | date .Format }} ",
"type": "time"
}
],

View file

@ -23,7 +23,7 @@
"style": "folder"
},
"style": "powerline",
"template": " \udb80\ude4b {{ .Path }} ",
"template": " \uea83 {{ .Path }} ",
"type": "path"
},
{
@ -44,7 +44,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},
@ -56,7 +56,7 @@
"fetch_version": true
},
"style": "powerline",
"template": " \udb80\udf99 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"template": " \ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"type": "node"
},
{
@ -146,7 +146,7 @@
"always_enabled": true
},
"style": "plain",
"template": "<transparent>\ue0b0</> \udb81\udead{{ .FormattedMs }}\u2800",
"template": "<transparent>\ue0b0</> \ueba2{{ .FormattedMs }}\u2800",
"type": "executiontime"
},
{

View file

@ -27,9 +27,9 @@
"foreground": "#0C212F",
"leading_diamond": "<transparent,#26BDBB>\ue0b0</>",
"properties": {
"folder_icon": "\udb80\uddd8",
"folder_icon": "...",
"folder_separator_icon": "<transparent> \ue0b1 </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster_short"
},
"style": "diamond",
@ -53,7 +53,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -87,7 +87,7 @@
"properties": {
"folder_icon": "<#000000>\ue5fe </>",
"folder_separator_icon": "<#000000>\ue0b1 </>",
"home_icon": "\udb80\udedc ",
"home_icon": "\ueb06 ",
"style": "agnoster_short"
},
"style": "diamond",

View file

@ -12,7 +12,7 @@
"display_host": false
},
"style": "diamond",
"template": "{{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }} ",
"template": "{{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }} ",
"type": "session"
},
{

View file

@ -33,7 +33,7 @@
"background": "#185F7B",
"foreground": "#ffffff",
"properties": {
"home_icon": "\udb80\udede ",
"home_icon": "\ue617 ",
"style": "mixed"
},
"style": "diamond",
@ -51,7 +51,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -71,7 +71,7 @@
"always_enabled": true
},
"style": "powerline",
"template": " {{ if gt .Code 0 }}\udb80\udc26{{ else }}\uf469 \u2665{{ end }} ",
"template": " {{ if gt .Code 0 }}\uf421{{ else }}\uf469 \u2665{{ end }} ",
"type": "exit"
}
],
@ -89,7 +89,7 @@
"time_format": "3:04:05 PM"
},
"style": "diamond",
"template": " {{ .CurrentDate | date .Format }}<#ffffff> \udb82\udd54 </>",
"template": " {{ .CurrentDate | date .Format }}<#ffffff> \ue641 </>",
"trailing_diamond": "\ue0c4",
"type": "time"
},

View file

@ -71,7 +71,7 @@
"powerline_symbol": "\ue0b0",
"foreground": "#ffffff",
"background": "#7FD5EA",
"template": " \u202d\udb81\udfd3 {{ .Full }} "
"template": " \u202d\ue626 {{ .Full }} "
},
{
"type": "rust",
@ -99,7 +99,7 @@
"fetch_worktree_count": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#CAEBE1> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#CAEBE1> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],
@ -153,7 +153,7 @@
{
"foreground": "#F2D3B6",
"properties": {
"time_format": "<#D6DEEB>\udb82\udd54 15:04:05</> <#79DFE1>|</> \udb80\udcf0 2 Jan, Monday"
"time_format": "<#D6DEEB>\ue641 15:04:05</> <#79DFE1>|</> \uf073 2 Jan, Monday"
},
"style": "plain",
"template": "{{ .CurrentDate | date .Format }} <#79DFE1>|</>",
@ -164,8 +164,8 @@
"leading_diamond": "<#00C7FC> \uf07b </><#B6D6F2> in </>",
"properties": {
"folder_icon": " \uf07c ",
"folder_separator_icon": " \udb80\udc55 ",
"home_icon": "\udb80\udedc ",
"folder_separator_icon": " \uf061 ",
"home_icon": "\ueb06 ",
"style": "agnoster_short",
"max_depth": 3
},

View file

@ -7,7 +7,7 @@
{
"foreground": "#F5F5F5",
"style": "plain",
"template": "\udb81\ude27 ",
"template": "\ue7ad ",
"type": "text"
},
{

View file

@ -58,8 +58,8 @@
],
"properties": {
"charged_icon": "\uf240 ",
"charging_icon": "\udb80\udc84 ",
"discharging_icon": "\udb80\udc84 ",
"charging_icon": "\ueb2d ",
"discharging_icon": "\ueb2d ",
"text": "\ue0b0"
},
"style": "powerline",
@ -92,7 +92,7 @@
"foreground": "#fb7e14",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}@{{ .HostName }} <#fb7e14>\ue0b3</> ",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}@{{ .HostName }} <#fb7e14>\ue0b3</> ",
"type": "session"
},
{
@ -102,7 +102,7 @@
"time_format": "15:04:05, _2"
},
"style": "diamond",
"template": "{{ .CurrentDate | date .Format }} \udb80\udcf0 ",
"template": "{{ .CurrentDate | date .Format }} \uf073 ",
"trailing_diamond": "\ue0b4",
"type": "time"
}
@ -121,7 +121,7 @@
"foreground": "#292929",
"style": "diamond",
"leading_diamond": "\u2570\u2500\ue0b6",
"template": "\udb81\ude27",
"template": "\ue7ad",
"trailing_diamond": "\ue0b4",
"type": "path"
}

View file

@ -23,7 +23,7 @@
"style": "folder"
},
"style": "powerline",
"template": " \udb80\ude4b {{ .Path }} ",
"template": " \uea83 {{ .Path }} ",
"type": "path"
},
{
@ -43,7 +43,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -53,7 +53,7 @@
"always_enabled": true
},
"style": "plain",
"template": "<transparent>\ue0b0</> \udb81\udead{{ .FormattedMs }}\u2800",
"template": "<transparent>\ue0b0</> \ueba2{{ .FormattedMs }}\u2800",
"type": "executiontime"
},
{

View file

@ -56,7 +56,7 @@
"fetch_status": true
},
"style": "plain",
"template": "<#000000>\ue0b1 </>{{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#000000>\ue0b1 </>{{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -73,7 +73,7 @@
"foreground": "#06aad5",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "\udb81\udfd3 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4 ",
"type": "go"
},
@ -99,7 +99,7 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "\udb82\udc33 {{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}}",
"template": "\uf308 {{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}}",
"trailing_diamond": "\ue0b4",
"type": "kubectl"
}
@ -136,7 +136,7 @@
"invert_powerline": true,
"leading_diamond": "\ue0b2",
"properties": {
"charged_icon": "\udb85\udfe6 ",
"charged_icon": "\uf240 ",
"charging_icon": "\uf1e6 ",
"discharging_icon": "\ue234 "
},

View file

@ -33,7 +33,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -15,7 +15,7 @@
"foreground": "#1d1626",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " \uf26c {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}@{{ .HostName }} ",
"template": " \uf26c {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}@{{ .HostName }} ",
"type": "session"
},
{
@ -54,9 +54,9 @@
"properties": {
"azure_devops_icon": "\ufd03 ",
"bitbucket_icon": "\uf171 ",
"branch_gone_icon": "\udb80\udd8f ",
"branch_gone_icon": "\uebcc ",
"branch_icon": "\ue0a0 ",
"branch_identical_icon": "\udb80\udd91 ",
"branch_identical_icon": "\uf4c4 ",
"commit_icon": "\uf417 ",
"fetch_stash_count": true,
"fetch_status": true,
@ -68,7 +68,7 @@
"tag_icon": "\uf412 "
},
"style": "powerline",
"template": " {{ if( .UpstreamIcon ) }}{{ url .UpstreamIcon .UpstreamURL }} {{ end }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} <#ed1941>\uf044 {{.Working.String}}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} <#225a1f>\uf046 {{.Staging.String}}</>{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{.StashCount}}{{ end }}{{ if gt .WorktreeCount 0 }}{{if .IsWorkTree}}<#1d953f>{{ end }} \uf1bb {{if .IsWorkTree}}</>{{ end }}{{.WorktreeCount}}{{ end }} ",
"template": " {{ if( .UpstreamIcon ) }}{{ url .UpstreamIcon .UpstreamURL }} {{ end }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} <#ed1941>\uf044 {{.Working.String}}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} <#225a1f>\uf046 {{.Staging.String}}</>{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{.StashCount}}{{ end }}{{ if gt .WorktreeCount 0 }}{{if .IsWorkTree}}<#1d953f>{{ end }} \uf1bb {{if .IsWorkTree}}</>{{ end }}{{.WorktreeCount}}{{ end }} ",
"type": "git"
},
{

View file

@ -58,7 +58,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -72,7 +72,7 @@
"always_enabled": true
},
"style": "powerline",
"template": " \udb81\udf8f ",
"template": " \uea6c ",
"type": "exit"
}
],

View file

@ -73,7 +73,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -93,7 +93,7 @@
"always_enabled": true
},
"style": "plain",
"template": " {{ if gt .Code 0 }}\udb80\udd5a{{ else }}\udb80\udd34{{ end }} ",
"template": " {{ if gt .Code 0 }}\uf52f{{ else }}\uf4a7{{ end }} ",
"type": "exit"
},
{
@ -116,9 +116,9 @@
"invert_powerline": true,
"powerline_symbol": "\ue0b2",
"properties": {
"charged_icon": "\udb80\udc84 ",
"charging_icon": "\udb80\udc89 ",
"discharging_icon": "\udb80\udc7e "
"charged_icon": "\ueb2d ",
"charging_icon": "\uf241 ",
"discharging_icon": "\uf242 "
},
"style": "powerline",
"template": " {{ if not .Error }}{{ .Icon }}{{ .Percentage }}{{ end }}{{ .Error }}% ",

View file

@ -19,11 +19,11 @@
"properties": {
"folder_icon": "\uf115",
"folder_separator_icon": "\\",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "full"
},
"style": "powerline",
"template": " <#000>\uf07b \udb80\udc54</> {{ .Path }} ",
"template": " <#000>\uf07b \uea9c</> {{ .Path }} ",
"type": "path"
},
{
@ -37,7 +37,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }}) ",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }}) ",
"type": "git"
},
{
@ -56,7 +56,7 @@
"always_enabled": true
},
"style": "powerline",
"template": " \udb81\udead {{ .FormattedMs }} ",
"template": " \ueba2 {{ .FormattedMs }} ",
"type": "executiontime"
},
{
@ -81,7 +81,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " {{ if gt .Code 0 }}\udb80\udc26{{ else }}\uf469{{ end }}",
"template": " {{ if gt .Code 0 }}\uf421{{ else }}\uf469{{ end }}",
"trailing_diamond": "\ue0b4",
"type": "exit"
}

View file

@ -34,7 +34,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }}) ",
"template": " \u279c ({{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }}) ",
"type": "git"
},
{

View file

@ -33,7 +33,7 @@
"fetch_upstream_icon": true
},
"style": "diamond",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "git"
},

View file

@ -9,7 +9,7 @@
"foreground": "#011627",
"leading_diamond": "\u256d\u2500\ue0b6",
"properties": {
"windows": "\udb80\udf72"
"windows": "\ue62a"
},
"style": "diamond",
"template": " {{ if .WSL }}WSL at {{ end }}{{.Icon}} ",
@ -31,7 +31,7 @@
"properties": {
"folder_icon": "\uf07c ",
"folder_separator_icon": "<#011627>\ue0b1</> ",
"home_icon": " \udb80\udedc ",
"home_icon": " \ueb06 ",
"style": "agnoster"
},
"style": "powerline",
@ -56,7 +56,7 @@
"fetch_worktree_count": true
},
"style": "powerline",
"template": " {{ url .UpstreamIcon .UpstreamURL }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ url .UpstreamIcon .UpstreamURL }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -93,7 +93,7 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": "\udb80\udf5b {{ round .PhysicalPercentUsed .Precision }}% ",
"template": "\ue266 {{ round .PhysicalPercentUsed .Precision }}% ",
"trailing_diamond": "<transparent,#8f43f3>\ue0b2</>",
"type": "sysinfo"
},
@ -210,7 +210,7 @@
"foreground": "#06aad5",
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": "\udb81\udfd3 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"template": "\ue626 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }} ",
"trailing_diamond": "<transparent,#ffffff>\ue0b2</>",
"type": "go"
},
@ -255,7 +255,7 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": "\udb82\udc33 {{.Context}} :: {{if .Namespace}}{{.Namespace}}{{else}}default{{end}} ",
"template": "\uf308 {{.Context}} :: {{if .Namespace}}{{.Namespace}}{{else}}default{{end}} ",
"trailing_diamond": "<transparent,#316ce4>\ue0b2</>",
"type": "kubectl"
},
@ -275,7 +275,7 @@
"properties": {
"fetch_package_manager": true,
"npm_icon": "<#cc3a3a>\ue71e</> ",
"yarn_icon": "<#348cba>\udb80\udd1b</> "
"yarn_icon": "<#348cba>\ue6a7</> "
},
"style": "diamond",
"template": "\ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
@ -362,7 +362,7 @@
"time_format": "15:04:05"
},
"style": "diamond",
"template": "\udb82\udd54 {{ .CurrentDate | date .Format }}",
"template": "\ue641 {{ .CurrentDate | date .Format }}",
"trailing_diamond": "\ue0b4",
"type": "time"
}

View file

@ -24,7 +24,7 @@
"properties": {
"folder_icon": "\ue5ff",
"folder_separator_icon": "\ue0b9",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"mapped_locations": {
"C:\\Users": "\uf007",
"C:\\Windows": "\ue62a"

View file

@ -17,7 +17,7 @@
"properties": {
"folder_icon": "\ue5ff",
"folder_separator_icon": "/",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster"
},
"style": "plain",
@ -39,7 +39,7 @@
"github_icon": "\uf408 "
},
"style": "plain",
"template": " on {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<red> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<yellow> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }}",
"template": " on {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<red> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<yellow> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }}",
"type": "git"
},
{

View file

@ -34,7 +34,7 @@
"fetch_upstream_icon": true
},
"style": "plain",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -15,7 +15,7 @@
"background": "#ffea00",
"foreground": "#000000",
"style": "powerline",
"template": " \udb82\udc33{{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}} ",
"template": " \uf308{{.Context}}{{if .Namespace}} :: {{.Namespace}}{{end}} ",
"type": "kubectl"
},
{
@ -92,7 +92,7 @@
"properties": {
"folder_icon": "<#B5B2C2>\ue5fe </>",
"folder_separator_icon": "<#ffea00>\ue0b1 </>",
"home_icon": "\udb80\udedc ",
"home_icon": "\ueb06 ",
"style": "agnoster_short"
},
"style": "diamond",
@ -113,7 +113,7 @@
"fetch_upstream_icon": true
},
"style": "diamond",
"template": "<#ffea00>\ue0b1 </>{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#E84855> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#2FDA4E> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#ffea00>\ue0b1 </>{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#E84855> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#2FDA4E> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -18,7 +18,7 @@
"foreground": "#434343",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " \udb81\udcc7 {{ .Icon }}{{ if ne .Status \"stopped\" }}{{ .Artist }} - {{ .Track }}{{ end }} ",
"template": " \uf1bc {{ .Icon }}{{ if ne .Status \"stopped\" }}{{ .Artist }} - {{ .Track }}{{ end }} ",
"type": "spotify"
},
{
@ -41,7 +41,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -57,7 +57,7 @@
"foreground": "#ffffff",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": " \udb81\udfb7 {{ .Name }} ",
"template": " \uf120 {{ .Name }} ",
"type": "shell"
},
{

View file

@ -43,7 +43,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " \uf113 {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " \uf113 {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],
@ -59,7 +59,7 @@
"properties": {
"fetch_package_manager": true,
"npm_icon": " <#cc3a3a>\ue5fa</> ",
"yarn_icon": " <#348cba>\udb80\udd1b</>"
"yarn_icon": " <#348cba>\ue6a7</>"
},
"style": "diamond",
"template": "\ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}",
@ -80,7 +80,7 @@
"foreground": "#06aad5",
"leading_diamond": "\ue0b6",
"style": "diamond",
"template": "\udb81\udfd3 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4 ",
"type": "go"
},
@ -95,7 +95,7 @@
"time_format": "_2, 15:04:05"
},
"style": "diamond",
"template": " \udb80\udcf0 {{ .CurrentDate | date .Format }} ",
"template": " \uf073 {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b4",
"type": "time"
}

View file

@ -41,7 +41,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],
@ -59,7 +59,7 @@
"fetch_version": true
},
"style": "powerline",
"template": " {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} \udb80\udf99 ",
"template": " {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} \ue718 ",
"type": "node"
},
{

View file

@ -37,7 +37,7 @@
"github_icon": ""
},
"style": "plain",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#FFAFD7>*</>{{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#FFAFD7>*</>{{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -67,11 +67,11 @@
"fetch_status": true,
"branch_icon": "\uf418 ",
"branch_identical_icon": "\uf444",
"branch_gone_icon": "\udb80\udd56"
"branch_gone_icon": "\ueab8"
},
"style": "diamond",
"leading_diamond": "<transparent,background>\ue0b0</>",
"template": " {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} <transparent>\ue0b1</> <#121318>\uf044 {{ .Working.String }}</>{{ end }}{{ if .Staging.Changed }} <transparent>\ue0b1</> <#121318>\uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} <transparent>\ue0b1</> <#121318>\udb80\udd93 {{ .StashCount }}</>{{ end }} ",
"template": " {{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} <transparent>\ue0b1</> <#121318>\uf044 {{ .Working.String }}</>{{ end }}{{ if .Staging.Changed }} <transparent>\ue0b1</> <#121318>\uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} <transparent>\ue0b1</> <#121318>\ueb4b {{ .StashCount }}</>{{ end }} ",
"trailing_diamond": "\ue0b0",
"type": "git"
}
@ -91,7 +91,7 @@
"invert_powerline": true,
"style": "powerline",
"powerline_symbol": "\ue0b2",
"template": " \udb80\udd09 {{ .FormattedMs }} ",
"template": " \ueba2 {{ .FormattedMs }} ",
"type": "executiontime"
},
{
@ -102,7 +102,7 @@
},
"invert_powerline": true,
"style": "diamond",
"template": " \udb80\udcf0 {{ .CurrentDate | date .Format }} ",
"template": " \uf073 {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b0",
"type": "time"
}

View file

@ -48,7 +48,7 @@
"fetch_upstream_icon": true
},
"style": "plain",
"template": "[ {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ]",
"template": "[ {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ]",
"type": "git"
},
{

View file

@ -2260,13 +2260,13 @@
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\udb80\udca3"
"default": "\uf206"
},
"run_icon": {
"type": "string",
"title": "Alternative icon",
"description": "Alternative icon for this activity type",
"default": "\udb81\udf0e"
"default": "\ue213"
},
"skiing_icon": {
"type": "string",

View file

@ -70,7 +70,7 @@
"fetch_upstream_icon": true
},
"style": "diamond",
"template": "<#7a7a7a>\ue0b1 </>{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#E84855> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#2FDA4E> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#7a7a7a>\ue0b1 </>{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#E84855> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#2FDA4E> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -121,7 +121,7 @@
"time_format": "15:04:05"
},
"style": "diamond",
"template": " {{ .CurrentDate | date .Format }}<#007ACC> \udb82\udd54 </>",
"template": " {{ .CurrentDate | date .Format }}<#007ACC> \ue641 </>",
"trailing_diamond": "\u2593\ue0c6",
"type": "time"
}
@ -169,7 +169,7 @@
"always_enabled": true
},
"style": "plain",
"template": " \udb81\uddfc {{ if gt .Code 0 }}{{ .Code }}{{ end }} ",
"template": " \uea9f {{ if gt .Code 0 }}{{ .Code }}{{ end }} ",
"type": "exit"
}
],

View file

@ -68,7 +68,7 @@
"fetch_upstream_icon": true
},
"style": "diamond",
"template": "<#7a7a7a>\ue0b1 </>{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#E84855> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#2FDA4E> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#7a7a7a>\ue0b1 </>{{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }}<#E84855> \uf044 {{ .Working.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }}<#2FDA4E> \uf046 {{ .Staging.String }}</>{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -119,7 +119,7 @@
"time_format": "15:04:05"
},
"style": "diamond",
"template": " {{ .CurrentDate | date .Format }}<#007ACC> \udb82\udd54 </>",
"template": " {{ .CurrentDate | date .Format }}<#007ACC> \ue641 </>",
"trailing_diamond": "\u2593\ue0c6",
"type": "time"
}
@ -167,7 +167,7 @@
"always_enabled": true
},
"style": "plain",
"template": " \udb81\uddfc {{ if gt .Code 0 }}{{ .Code }}{{ end }} ",
"template": " \uea9f {{ if gt .Code 0 }}{{ .Code }}{{ end }} ",
"type": "exit"
}
],

View file

@ -42,7 +42,7 @@
"properties": {
"folder_icon": "\ue5fe",
"folder_separator_icon": "<transparent> \ue0bd </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster_short"
},
"style": "plain",
@ -57,7 +57,7 @@
"fetch_status": true
},
"style": "plain",
"template": "<#000000>\ue0b1 </>{{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#000000>\ue0b1 </>{{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -83,7 +83,7 @@
"foreground": "#43CCEA",
"leading_diamond": "\ue0c5",
"style": "diamond",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}<transparent> / </>{{ .HostName }}",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}<transparent> / </>{{ .HostName }}",
"type": "session"
},
{
@ -113,7 +113,7 @@
"always_enabled": true
},
"style": "plain",
"template": "\udb81\ude0d ",
"template": "\uf432 ",
"type": "exit"
}
],

View file

@ -42,7 +42,7 @@
"properties": {
"folder_icon": "\ue5fe",
"folder_separator_icon": "<transparent> \ue0bd </>",
"home_icon": "\udb80\udedc",
"home_icon": "\ueb06",
"style": "agnoster_short"
},
"style": "plain",
@ -57,7 +57,7 @@
"fetch_status": true
},
"style": "plain",
"template": "<#000000>\ue0b1 </>{{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#000000>\ue0b1 </>{{ .HEAD }}{{ if .Staging.Changed }}<#FF6F00> \uf046 {{ .Staging.String }}</>{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -83,7 +83,7 @@
"foreground": "#43CCEA",
"leading_diamond": "\ue0c5",
"style": "diamond",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}<transparent> / </>{{ .HostName }}",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}<transparent> / </>{{ .HostName }}",
"type": "session"
},
{
@ -113,7 +113,7 @@
"always_enabled": true
},
"style": "plain",
"template": "\udb81\ude0d ",
"template": "\uf432 ",
"type": "exit"
}
],

View file

@ -34,7 +34,7 @@
"fetch_stash_count": true
},
"style": "plain",
"template": "<#ffffff>on</> {{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#ffffff>on</> {{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -46,7 +46,7 @@
{
"foreground": "#7FD5EA",
"style": "powerline",
"template": "[\udb81\udfd3 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}] ",
"template": "[\ue626 {{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}] ",
"type": "go"
},
{

View file

@ -26,7 +26,7 @@
"fetch_stash_count": true
},
"style": "plain",
"template": "<#ffffff>on</> {{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": "<#ffffff>on</> {{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
}
],

View file

@ -14,7 +14,7 @@
"display_host": true
},
"style": "plain",
"template": "\u250c {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}@{{ .HostName }} "
"template": "\u250c {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}@{{ .HostName }} "
},
{
"type": "path",

View file

@ -65,7 +65,7 @@
"properties": {
"fetch_package_manager": true,
"npm_icon": " <#cc3a3a>\ue5fa</> ",
"yarn_icon": " <#348cba>\udb80\udd1b</>"
"yarn_icon": " <#348cba>\ue6a7</>"
},
"style": "diamond",
"template": "\ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}",
@ -78,7 +78,7 @@
"invert_powerline": true,
"leading_diamond": " \ue0b6",
"style": "diamond",
"template": " \udb82\udd54 {{ .CurrentDate | date .Format }} ",
"template": " \ue641 {{ .CurrentDate | date .Format }} ",
"trailing_diamond": "\ue0b4",
"type": "time"
}

View file

@ -10,7 +10,7 @@
"leading_diamond": "\ue0b6",
"powerline_symbol": "\ue0b0",
"style": "diamond",
"template": "\udb81\udfc0 {{ .HostName }} ",
"template": "\uf108 {{ .HostName }} ",
"type": "session"
},
{
@ -40,7 +40,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -33,14 +33,14 @@
"background": "#222222",
"foreground": "#666666",
"style": "plain",
"template": " {{ if .WSL }}\udb80\udd8f {{ end }}{{.Icon}}",
"template": " {{ if .WSL }}\uebcc {{ end }}{{.Icon}}",
"type": "os"
},
{
"background": "#222222",
"foreground": "#666666",
"style": "plain",
"template": " {{ if .SSHSession }}\udb80\udf18 {{ end }}{{ .UserName }}@{{ .HostName }} ",
"template": " {{ if .SSHSession }}\ueba9 {{ end }}{{ .UserName }}@{{ .HostName }} ",
"type": "session"
},
{
@ -64,7 +64,7 @@
"fetch_status": false,
"fetch_upstream_icon": false,
"merge_icon": "\ue727 ",
"no_commits_icon": "\udb80\udc95 ",
"no_commits_icon": "\uf0c3 ",
"rebase_icon": "\ue728 ",
"revert_icon": "\uf0e2 ",
"tag_icon": "\uf412 "
@ -90,7 +90,7 @@
"fetch_version": false
},
"style": "plain",
"template": " \udb81\udfd3 ",
"template": " \ue626 ",
"type": "go"
},
{

View file

@ -7,7 +7,7 @@
{
"foreground": "#7eb8da",
"style": "plain",
"template": "\u250f[<#ffffff>\udb80\udc09</> {{ .UserName }} from <#ffffff>\udb81\udfc0</> {{ .HostName }}]",
"template": "\u250f[<#ffffff>\ueb99</> {{ .UserName }} from <#ffffff>\uf108</> {{ .HostName }}]",
"type": "session"
},
{
@ -31,7 +31,7 @@
{
"foreground": "#be9ddf",
"style": "diamond",
"template": "[<#ffffff>\udb80\udf5b</> RAM: {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB]",
"template": "[<#ffffff>\ue266</> RAM: {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1000000000.0) }}GB]",
"type": "sysinfo"
},
{
@ -40,7 +40,7 @@
"time_format": "Monday at 3:04:05 PM"
},
"style": "diamond",
"template": "[<#ffffff>\udb80\udcf0</> {{ .CurrentDate | date .Format }}]",
"template": "[<#ffffff>\uf073</> {{ .CurrentDate | date .Format }}]",
"type": "time"
},
{
@ -51,7 +51,7 @@
"fetch_upstream_icon": true
},
"style": "plain",
"template": "[<#ffffff>{{ .UpstreamIcon }}</>{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} <#ffffff>\uf044</> {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} <#ffffff>\uf046</> {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} <#ffffff>\udb80\udd93</> {{ .StashCount }}{{ end }}]",
"template": "[<#ffffff>{{ .UpstreamIcon }}</>{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} <#ffffff>\uf044</> {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} <#ffffff>\uf046</> {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} <#ffffff>\ueb4b</> {{ .StashCount }}{{ end }}]",
"type": "git"
},
{
@ -75,7 +75,7 @@
{
"foreground": "#ffa5d8",
"style": "powerline",
"template": "[<#ffffff>\udb81\udf8f</> Error, check your command]",
"template": "[<#ffffff>\uea6c</> Error, check your command]",
"type": "exit"
}
],

View file

@ -72,7 +72,7 @@
"type": "node",
"style": "plain",
"foreground": "p:pistachio-green",
"template": "\udb80\udf99 {{ .Full }} "
"template": "\ue718 {{ .Full }} "
},
{
"type": "php",

View file

@ -25,7 +25,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{

View file

@ -31,7 +31,7 @@
{
"foreground": "#BFA8BF",
"style": "powerline",
"template": " <#fff>\udb81\udfb7</> {{ .Name }} ",
"template": " <#fff>\uf120</> {{ .Name }} ",
"type": "shell"
}
],
@ -75,7 +75,7 @@
{
"foreground": "#BBC4B9",
"style": "diamond",
"template": "<#fff>\udb80\udddd \ue718</> {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"template": " <#fff>\ue718</> {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }} ",
"type": "node"
}
],

View file

@ -43,7 +43,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -51,7 +51,7 @@
"foreground": "#fff",
"powerline_symbol": "\ue0b0",
"style": "powerline",
"template": "<#fff> \udb82\udd54 </>{{ .CurrentDate | date .Format }} ",
"template": "<#fff> \ue641 </>{{ .CurrentDate | date .Format }} ",
"type": "time"
},
{
@ -61,7 +61,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " \udb81\udead {{ .FormattedMs }}\u2800",
"template": " \ueba2 {{ .FormattedMs }}\u2800",
"trailing_diamond": "\ue0b4",
"type": "executiontime"
}

View file

@ -48,7 +48,7 @@
"fetch_upstream_icon": true
},
"style": "powerline",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"type": "git"
},
{
@ -72,7 +72,7 @@
"always_enabled": true
},
"style": "diamond",
"template": " \udb86\udca0{{ if gt .Code 0 }} {{.Code}}{{ end }} ",
"template": " \ueb05{{ if gt .Code 0 }} {{.Code}}{{ end }} ",
"trailing_diamond": "\ue0b4",
"type": "exit"
}
@ -102,7 +102,7 @@
"fetch_version": false
},
"style": "diamond",
"template": "\udb81\udfd3{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"template": "\ue626{{ if .Error }}{{ .Error }}{{ else }}{{ .Full }}{{ end }}",
"trailing_diamond": "\ue0b4",
"type": "go"
},

View file

@ -11,7 +11,7 @@
"properties": {
"macos": "\uf179 ",
"ubuntu": "\uf31b ",
"windows": "\udb80\udf72 "
"windows": "\ue62a "
},
"style": "diamond",
"template": " {{ if .WSL }}WSL at {{ end }}{{.Icon}}",
@ -35,14 +35,14 @@
"foreground": "#ffffff",
"leading_diamond": "\ue0b2",
"style": "diamond",
"template": "\udb80\udf5b CPU: {{ round .PhysicalPercentUsed .Precision }}% | ",
"template": "\ue266 CPU: {{ round .PhysicalPercentUsed .Precision }}% | ",
"type": "sysinfo"
},
{
"background": "#516BEB",
"foreground": "#ffffff",
"style": "diamond",
"template": "RAM: {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1068786176.0) }}GB \udb80\udf5b ",
"template": "RAM: {{ (div ((sub .PhysicalTotalMemory .PhysicalFreeMemory)|float64) 1000000000.0) }}/{{ (div .PhysicalTotalMemory 1068786176.0) }}GB \ue266 ",
"trailing_diamond": "<transparent,#516BEB>\ue0b2</>",
"type": "sysinfo"
},
@ -72,7 +72,7 @@
"properties": {
"fetch_package_manager": true,
"npm_icon": " <#cc3a3a>\ue5fa</> ",
"yarn_icon": " <#348cba>\udb80\udd1b</>"
"yarn_icon": " <#348cba>\ue6a7</>"
},
"style": "diamond",
"template": "\ue718 {{ if .PackageManagerIcon }}{{ .PackageManagerIcon }} {{ end }}{{ .Full }}",
@ -91,7 +91,7 @@
"fetch_worktree_count": true
},
"style": "diamond",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \udb80\udd93 {{ .StashCount }}{{ end }} ",
"template": " {{ .UpstreamIcon }}{{ .HEAD }}{{if .BranchStatus }} {{ .BranchStatus }}{{ end }}{{ if .Working.Changed }} \uf044 {{ .Working.String }}{{ end }}{{ if and (.Working.Changed) (.Staging.Changed) }} |{{ end }}{{ if .Staging.Changed }} \uf046 {{ .Staging.String }}{{ end }}{{ if gt .StashCount 0 }} \ueb4b {{ .StashCount }}{{ end }} ",
"trailing_diamond": "\ue0b0",
"type": "git"
}
@ -120,7 +120,7 @@
"always_enabled": true
},
"style": "plain",
"template": " \udb86\udca0 ",
"template": " \ueb05 ",
"type": "exit"
}
],

View file

@ -180,7 +180,7 @@ If you want to for example use the [git][git] segment's `.UpstreamGone` property
do so like this:
```json
"template": " {{ if .Segments.Git.UpstreamGone }}\udb80\uded4{{ else if gt .Code 0 }}\uf00d{{ else }}\uf00c{{ end }} "
"template": " {{ if .Segments.Git.UpstreamGone }}\ueb05{{ else if gt .Code 0 }}\uf00d{{ else }}\uf00c{{ end }} "
```
:::caution
@ -227,7 +227,7 @@ to distinct between both. For example:
If you want to know if a specific segment is active, you can use the `.Segments.Contains` function, for example:
```json
"template": "{{ if .Segments.Contains \"Git\" }}\udb80\uded4{{ else if gt .Code 0 }}\uf00d{{ else }}\uf00c{{ end }} "
"template": "{{ if .Segments.Contains \"Git\" }}\ueb05{{ else if gt .Code 0 }}\uf00d{{ else }}\uf00c{{ end }} "
```
## Text decoration

Some files were not shown because too many files have changed in this diff Show more