oh-my-posh/segment_root.go

25 lines
408 B
Go
Raw Normal View History

2019-03-13 04:14:30 -07:00
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 {
2020-10-15 23:48:49 -07:00
return rt.props.getString(RootIcon, "\uF0E7")
2019-03-13 04:14:30 -07:00
}
func (rt *root) init(props *properties, env environmentInfo) {
rt.props = props
rt.env = env
}