oh-my-posh/segment_shell.go
2020-09-24 19:34:19 +02:00

20 lines
289 B
Go

package main
type shell struct {
props *properties
env environmentInfo
}
func (s *shell) enabled() bool {
return true
}
func (s *shell) string() string {
return s.env.getShellName()
}
func (s *shell) init(props *properties, env environmentInfo) {
s.props = props
s.env = env
}