oh-my-posh/src/segment_root.go
2021-11-26 11:11:07 +01:00

25 lines
407 B
Go

package main
type root struct {
props properties
env environmentInfo
}
const (
// RootIcon indicates the root user
RootIcon Property = "root_icon"
)
func (rt *root) enabled() bool {
return rt.env.isRunningAsRoot()
}
func (rt *root) string() string {
return rt.props.getString(RootIcon, "\uF0E7")
}
func (rt *root) init(props properties, env environmentInfo) {
rt.props = props
rt.env = env
}