1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
package main
import pwl "github.com/justjanne/powerline-go/powerline"
func segmentRoot(p *powerline) []pwl.Segment {
var foreground, background uint8
if p.cfg.PrevError == 0 || p.cfg.StaticPromptIndicator {
foreground = p.theme.CmdPassedFg
background = p.theme.CmdPassedBg
} else {
foreground = p.theme.CmdFailedFg
background = p.theme.CmdFailedBg
}
return []pwl.Segment{{
Name: "root",
Content: p.shell.RootIndicator,
Foreground: foreground,
Background: background,
}}
}
|