//go:build linux // +build linux // package profiles import "path/filepath" const ( XDG_HOME = "XDG_CONFIG_HOME" ) type ProfileManager interface { ListProfiles() ([]string, error) GetProfiles() ([]*Profile, error) GetDefaultProfile() (*Profile, error) } type Profile struct { Id string Name string Path string } func (p *Profile) GetPath() string { return p.Path } type PathGetter interface { Get() string } type INIProfileLoader struct { // The absolute path to the directory where profiles.ini is located BasePath string ProfilesFile string } func (pg *INIProfileLoader) Get() string { return filepath.Join(pg.BasePath, pg.ProfilesFile) }