Added script hook for App Store software install.
- Allows for the automation of Mac App Store software via the [Mac App Store CLI](https://github.com/mas-cli/mas) app. - See [macOS Config](https://github.com/bkuhlmann/mac_os-config) for usage.
This commit is contained in:
1
bin/run
1
bin/run
@@ -40,6 +40,7 @@ while true; do
|
||||
printf " b: Apply basic settings.\n"
|
||||
printf " t: Install development tools.\n"
|
||||
printf " h: Install Homebrew software.\n"
|
||||
printf " m: Install Mac App Store software.\n"
|
||||
printf " a: Install application software.\n"
|
||||
printf " x: Install application software extensions.\n"
|
||||
printf " d: Apply default settings.\n"
|
||||
|
||||
@@ -16,6 +16,8 @@ process_option() {
|
||||
bin/install_dev_tools;;
|
||||
'h')
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_homebrew";;
|
||||
'm')
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_app_store";;
|
||||
'a')
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_applications";;
|
||||
'x')
|
||||
@@ -29,6 +31,7 @@ process_option() {
|
||||
"$MAC_OS_CONFIG_PATH/bin/apply_basic_settings"
|
||||
bin/install_dev_tools
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_homebrew"
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_app_store"
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_applications"
|
||||
"$MAC_OS_CONFIG_PATH/bin/install_extensions"
|
||||
"$MAC_OS_CONFIG_PATH/bin/apply_default_settings"
|
||||
|
||||
Reference in New Issue
Block a user