oh-my-posh/segment_root.go
2020-09-12 08:57:18 +02:00

25 lines
403 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, "#")
}
func (rt *root) init(props *properties, env environmentInfo) {
rt.props = props
rt.env = env
}