diff --git a/bin/install_homebrew b/bin/install_homebrew deleted file mode 100755 index 8dcb587..0000000 --- a/bin/install_homebrew +++ /dev/null @@ -1,18 +0,0 @@ -#! /usr/bin/env bash - -# DESCRIPTION -# Installs Homebrew software. - -# SETTINGS -set -o nounset -set -o errexit -set -o pipefail -IFS=$'\n\t' -SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_homebrew" - -# EXECUTION -if [[ -x "$SCRIPT_PATH" ]]; then - "$SCRIPT_PATH" -else - printf "WARNING: Homebrew install script does not exist or is not executable.\n" -fi diff --git a/bin/install_homebrew_formulas b/bin/install_homebrew_formulas new file mode 100755 index 0000000..88ffb1a --- /dev/null +++ b/bin/install_homebrew_formulas @@ -0,0 +1,18 @@ +#! /usr/bin/env bash + +# DESCRIPTION +# Installs Homebrew Formula software. + +# SETTINGS +set -o nounset +set -o errexit +set -o pipefail +IFS=$'\n\t' +SCRIPT_PATH="$MAC_OS_CONFIG_PATH/bin/install_homebrew_formulas" + +# EXECUTION +if [[ -x "$SCRIPT_PATH" ]]; then + "$SCRIPT_PATH" +else + printf "WARNING: Homebrew Formulas install script does not exist or is not executable.\n" +fi diff --git a/bin/run b/bin/run index 9e2b7cf..363da29 100755 --- a/bin/run +++ b/bin/run @@ -35,28 +35,28 @@ while true; do printf "\nUsage: run OPTION\n" printf "\nOSX Options:\n" printf " Boot:\n" - printf " B: Create boot disk.\n" + printf " B: Create boot disk.\n" printf " Install:\n" - 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" - printf " s: Setup installed software.\n" - printf " i: Install everything (i.e. executes all install options).\n" + printf " b: Apply basic settings.\n" + printf " t: Install development tools.\n" + printf " hf: Install Homebrew Formulas.\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" + printf " s: Setup installed software.\n" + printf " i: Install everything (i.e. executes all install options).\n" printf " Restore:\n" - printf " R: Restore settings from backup.\n" + printf " R: Restore settings from backup.\n" printf " Manage:\n" - printf " c: Check status of managed software.\n" - printf " C: Caffeinate machine.\n" - printf " ua: Uninstall application software.\n" - printf " ux: Uninstall application software extension.\n" - printf " ra: Reinstall application software.\n" - printf " rx: Reinstall application software extension.\n" - printf " w: Clean work (temp) directory.\n" - printf " q: Quit/Exit.\n\n" + printf " c: Check status of managed software.\n" + printf " C: Caffeinate machine.\n" + printf " ua: Uninstall application software.\n" + printf " ux: Uninstall application software extension.\n" + printf " ra: Reinstall application software.\n" + printf " rx: Reinstall application software extension.\n" + printf " w: Clean work (temp) directory.\n" + printf " q: Quit/Exit.\n\n" read -p "Enter selection: " response printf "\n" process_option $response diff --git a/lib/options.sh b/lib/options.sh index 9cc8ecf..d411541 100644 --- a/lib/options.sh +++ b/lib/options.sh @@ -14,8 +14,8 @@ process_option() { bin/apply_basic_settings;; 't') bin/install_dev_tools;; - 'h') - bin/install_homebrew;; + 'hf') + bin/install_homebrew_formulas;; 'm') bin/install_app_store;; 'a')