ConfigurationΒΆ

The cleanmymac utility accepts a configuration file by specifying the -c option. If not specified the file is assumed to be at the following location ~/.cleanmymac.yaml

the global configuration can be used (for now) to pass specific env vars to shell commands, for example assume that the anaconda cleanmymac.target.Target is not in the main path:

anaconda: {
  env: {
    PATH: '~/anaconda/bin',
  },
}

Also, additional YAML target paths can be specified in the global config file:

cleanmymac: {
  targets_path: ['path1', 'path2', 'path3']
}