├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── app.py ├── const.py ├── dns_helper.sh ├── hjson_to_json.py ├── hooks └── pre-commit ├── osx-config.hjson ├── osx-config.json ├── prompt.py ├── run_quick_test.sh └── scripts ├── DestroyFVKeyOnStandby_check.sh ├── __init__.py ├── api.sh ├── check_usr_local_bin_pos.sh ├── chrome_defaults.py ├── chrome_flash.sh ├── chrome_nativeclient.sh ├── chrome_widevine.sh ├── homebrew_install_ed33f044812cc9c509a4d8e6997c44441b06dd4e1fc87f131ee9f319d77fcd50.rb ├── set_openssl_latest_path.sh ├── set_path_precedence.py ├── test ├── __init__.py ├── chrome_defaults_quick_test.py └── master_preferences └── use_google_dns.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/README.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/app.py -------------------------------------------------------------------------------- /const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/const.py -------------------------------------------------------------------------------- /dns_helper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/dns_helper.sh -------------------------------------------------------------------------------- /hjson_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/hjson_to_json.py -------------------------------------------------------------------------------- /hooks/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/hooks/pre-commit -------------------------------------------------------------------------------- /osx-config.hjson: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/osx-config.hjson -------------------------------------------------------------------------------- /osx-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/osx-config.json -------------------------------------------------------------------------------- /prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/prompt.py -------------------------------------------------------------------------------- /run_quick_test.sh: -------------------------------------------------------------------------------- 1 | python -m unittest discover -p "*_quick_test.py" 2 | osascript -e 'beep' 3 | -------------------------------------------------------------------------------- /scripts/DestroyFVKeyOnStandby_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/DestroyFVKeyOnStandby_check.sh -------------------------------------------------------------------------------- /scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/api.sh -------------------------------------------------------------------------------- /scripts/check_usr_local_bin_pos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/check_usr_local_bin_pos.sh -------------------------------------------------------------------------------- /scripts/chrome_defaults.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/chrome_defaults.py -------------------------------------------------------------------------------- /scripts/chrome_flash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/chrome_flash.sh -------------------------------------------------------------------------------- /scripts/chrome_nativeclient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/chrome_nativeclient.sh -------------------------------------------------------------------------------- /scripts/chrome_widevine.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/chrome_widevine.sh -------------------------------------------------------------------------------- /scripts/homebrew_install_ed33f044812cc9c509a4d8e6997c44441b06dd4e1fc87f131ee9f319d77fcd50.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/homebrew_install_ed33f044812cc9c509a4d8e6997c44441b06dd4e1fc87f131ee9f319d77fcd50.rb -------------------------------------------------------------------------------- /scripts/set_openssl_latest_path.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/set_openssl_latest_path.sh -------------------------------------------------------------------------------- /scripts/set_path_precedence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/set_path_precedence.py -------------------------------------------------------------------------------- /scripts/test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/test/chrome_defaults_quick_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/test/chrome_defaults_quick_test.py -------------------------------------------------------------------------------- /scripts/test/master_preferences: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/test/master_preferences -------------------------------------------------------------------------------- /scripts/use_google_dns.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kristovatlas/osx-config-check/HEAD/scripts/use_google_dns.sh --------------------------------------------------------------------------------