mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-11-09 20:44:03 -08:00
25 lines
359 B
Go
25 lines
359 B
Go
package main
|
|
|
|
type shell struct {
|
|
props *properties
|
|
env environmentInfo
|
|
}
|
|
|
|
func (s *shell) enabled() bool {
|
|
return true
|
|
}
|
|
|
|
func (s *shell) string() string {
|
|
p, err := s.env.getParentProcess()
|
|
|
|
if err != nil {
|
|
return "unknown"
|
|
}
|
|
return p.Executable()
|
|
}
|
|
|
|
func (s *shell) init(props *properties, env environmentInfo) {
|
|
s.props = props
|
|
s.env = env
|
|
}
|