From dad1c674c2ba6c65c0f2f8b0a83ea5581c7726f8 Mon Sep 17 00:00:00 2001 From: Nathaniel Landau Date: Sat, 7 Feb 2015 14:23:17 -0500 Subject: [PATCH] Refactored to be based on my script template --- setupScripts/casks.sh | 220 ++++++++- setupScripts/fileTest.sh | 247 +++++++++- setupScripts/mackup.sh | 303 ++++++++++-- setupScripts/osx.sh | 982 ++++++++++++++++++++++++--------------- setupScripts/ruby.sh | 227 ++++++++- setupScripts/ssh.sh | 248 +++++++++- 6 files changed, 1763 insertions(+), 464 deletions(-) diff --git a/setupScripts/casks.sh b/setupScripts/casks.sh index d2f482c..095cd5d 100755 --- a/setupScripts/casks.sh +++ b/setupScripts/casks.sh @@ -1,11 +1,106 @@ #!/usr/bin/env bash +# ################################################## +# My Generic BASH script template +# +version="1.0.0" # Sets version variable for this script +# +scriptTemplateVersion="1.0.1" # Version of scriptTemplate.sh +# that this script is based on +# +# A Bash script boilerplate. Allows for common functions, logging, tmp +# file creation, CL option passing, and more. +# +# For logging levels use the following functions: +# - header: Prints a script header +# - input: Ask for user input +# - success: Print script success +# - info: Print information to the user +# - notice: Notify the user of something +# - warning: Warn the user of something +# - error: Print a non-fatal error +# - die: A fatal error. Will exit the script +# - debug: Debug information +# - verbose: Debug info only printed when 'verbose' flag is set to 'true'. +# +# HISTORY: +# +# * 2015-02-07 - v1.0.0 - First Creation +# +# ################################################## + +# Source Scripting Utilities +# ----------------------------------- +# If these can't be found, update the path to the file +# ----------------------------------- if [ -f "../lib/utils.sh" ]; then source "../lib/utils.sh" else - echo "You must have utils.sh to run. Exiting." - exit + echo "Please find the file util.sh and add a reference to it in this script. Exiting." + exit 1 fi +# trapCleanup Function +# ----------------------------------- +# Any actions that should be taken if the script is prematurely +# exited. Always call this function at the top of your script. +# ----------------------------------- +function trapCleanup() { + echo "" + if is_dir "${tmpDir}"; then + rm -r "${tmpDir}" + fi + die "Exit trapped." # Edit this if you like. +} + +# Set Flags +# ----------------------------------- +# Flags which can be overridden by user input. +# Default values are below +# ----------------------------------- +quiet=0 +printLog=0 +verbose=0 +force=0 +strict=0 + + +# Set Local Variables +# ----------------------------------- +# A set of variables used by many scripts +# ----------------------------------- + +# Set Script name and location variables +scriptName=`basename ${0}` # Full name +scriptBasename="$(basename ${scriptName} .sh)" # Strips '.sh' from name +scriptPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +# Set time stamp +now=$(date +"%m-%d-%Y %r") +# Set hostname +thisHost=$(hostname) + +# Create temp directory with three random numbers and the process ID +# in the name. This directory is removed automatically at exit. + tmpDir="/tmp/${scriptName}.$RANDOM.$RANDOM.$RANDOM.$$" + (umask 077 && mkdir "${tmpDir}") || { + die "Could not create temporary directory! Exiting." + } + +# Logging +# ----------------------------------- +# Log is only used when the '-l' flag is set. +# +# To never save a logfile change variable to '/dev/null' +# Save to Desktop use: $HOME/Desktop/${scriptBasename}.log +# Save to standard user log location use: $HOME/Library/Logs/${scriptBasename}.log +# ----------------------------------- +logFile="$HOME/Library/Logs/${scriptBasename}.log" + + +function mainScript() { +############## Begin Script Here ################### +header "Beginning ${scriptName}" + # Set Variables LISTINSTALLED="brew cask list" @@ -72,6 +167,123 @@ hasHomebrew hasCasks brewMaintenance doInstall +brewCleanup -# Cleanup Homebrew -brew cask cleanup + +header "Completed ${scriptName}" +############## End Script Here ################### +} + +############## Begin Options and Usage ################### + + +# Print usage +usage() { + echo -n "${scriptName} [OPTION]... [FILE]... + +This is my script template. + + Options: + -u, --username Username for script + -p, --password User password + -f, --force Skip all user interaction. Implied 'Yes' to all actions + -q, --quiet Quiet (no output) + -l, --log Print log to file + -s, --strict Exit script with null variables. i.e 'set -o nounset' + -v, --verbose Output more information. (Items echoed to 'verbose') + -h, --help Display this help and exit + --version Output version information and exit +" +} + +# Iterate over options breaking -ab into -a -b when needed and --foo=bar into +# --foo bar +optstring=h +unset options +while (($#)); do + case $1 in + # If option is of type -ab + -[!-]?*) + # Loop over each character starting with the second + for ((i=1; i < ${#1}; i++)); do + c=${1:i:1} + + # Add current char to options + options+=("-$c") + + # If option takes a required argument, and it's not the last char make + # the rest of the string its argument + if [[ $optstring = *"$c:"* && ${1:i+1} ]]; then + options+=("${1:i+1}") + break + fi + done + ;; + + # If option is of type --foo=bar + --?*=*) options+=("${1%%=*}" "${1#*=}") ;; + # add --endopts for -- + --) options+=(--endopts) ;; + # Otherwise, nothing special + *) options+=("$1") ;; + esac + shift +done +set -- "${options[@]}" +unset options + +# Print help if no arguments were passed. +# Uncomment to force arguments when invoking the script +# [[ $# -eq 0 ]] && set -- "--help" + +# Read the options and set stuff +while [[ $1 = -?* ]]; do + case $1 in + -h|--help) usage >&2; safeExit ;; + --version) echo "$(basename $0) $version"; safeExit ;; + -u|--username) shift; username=$1 ;; + -p|--password) shift; password=$1 ;; + -v|--verbose) verbose=1 ;; + -l|--log) printLog=1 ;; + -q|--quiet) quiet=1 ;; + -s|--strict) strict=1;; + -f|--force) force=1 ;; + --endopts) shift; break ;; + *) die "invalid option: '$1'." ;; + esac + shift +done + + +############## End Options and Usage ################### + + + + +# ############# ############# ############# +# ## TIME TO RUN THE SCRIPT ## +# ## ## +# ## You shouldn't need to edit anything ## +# ## beneath this line ## +# ## ## +# ############# ############# ############# + +# Trap bad exits with your cleanup function +trap trapCleanup EXIT INT TERM + +# Exit on error. Append ||true if you expect an error. +set -o errexit + +# Exit on empty variable +if [ "${strict}" = "1" ]; then + set -o nounset +fi + +# Bash will remember & return the highest exitcode in a chain of pipes. +# This way you can catch the error in case mysqldump fails in `mysqldump |gzip` +set -o pipefail + + +mainScript # Run your script + +safeExit # Exit cleanly \ No newline at end of file diff --git a/setupScripts/fileTest.sh b/setupScripts/fileTest.sh index 7b2bcfc..d30c6be 100755 --- a/setupScripts/fileTest.sh +++ b/setupScripts/fileTest.sh @@ -1,34 +1,253 @@ #!/usr/bin/env bash -# This script tests for the existence of certain files in Dropbox. -# It is used to keep a current list in the mackup.sh script. +# ################################################## +# My Generic BASH script template +# +version="1.0.0" # Sets version variable for this script +# +scriptTemplateVersion="1.1.0" # Version of scriptTemplate.sh that this script is based on +# v.1.1.0 - Added 'debug' option +# +# A Script to test if certain files from Dropbox are synced to the local hard drive. +# This script relies on a text file containing paths to documents. +# +# For logging levels use the following functions: +# - header: Prints a script header +# - input: Ask for user input +# - success: Print script success +# - info: Print information to the user +# - notice: Notify the user of something +# - warning: Warn the user of something +# - error: Print a non-fatal error +# - die: A fatal error. Will exit the script +# - debug: Debug information +# - verbose: Debug info only printed when 'verbose' flag is set to 'true'. +# +# HISTORY: +# +# * 2015-02-07 - v1.0.0 - First Creation +# +# ################################################## +# Source Scripting Utilities +# ----------------------------------- +# If these can't be found, update the path to the file +# ----------------------------------- if [ -f "../lib/utils.sh" ]; then source "../lib/utils.sh" else - echo "You must have utils.sh to run. Exiting." - exit 0 + echo "Please find the file util.sh and add a reference to it in this script. Exiting." + exit 1 fi +# trapCleanup Function +# ----------------------------------- +# Any actions that should be taken if the script is prematurely +# exited. Always call this function at the top of your script. +# ----------------------------------- +function trapCleanup() { + echo "" + if is_dir "${tmpDir}"; then + rm -r "${tmpDir}" + fi + die "Exit trapped." # Edit this if you like. +} + +# Set Flags +# ----------------------------------- +# Flags which can be overridden by user input. +# Default values are below +# ----------------------------------- +quiet=0 +printLog=0 +verbose=0 +force=0 +strict=0 +debug=0 + + +# Set Local Variables +# ----------------------------------- +# A set of variables used by many scripts +# ----------------------------------- + +# Set Script name and location variables +scriptName=`basename ${0}` # Full name +scriptBasename="$(basename ${scriptName} .sh)" # Strips '.sh' from name +scriptPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +# Set time stamp +now=$(date +"%m-%d-%Y %r") +# Set hostname +thisHost=$(hostname) + +# Create temp directory with three random numbers and the process ID +# in the name. This directory is removed automatically at exit. + tmpDir="/tmp/${scriptName}.$RANDOM.$RANDOM.$RANDOM.$$" + (umask 077 && mkdir "${tmpDir}") || { + die "Could not create temporary directory! Exiting." + } + +# Logging +# ----------------------------------- +# Log is only used when the '-l' flag is set. +# +# To never save a logfile change variable to '/dev/null' +# Save to Desktop use: $HOME/Desktop/${scriptBasename}.log +# Save to standard user log location use: $HOME/Library/Logs/${scriptBasename}.log +# ----------------------------------- +logFile="$HOME/Library/Logs/${scriptBasename}.log" + + +function mainScript() { +############## Begin Script Here ################### +header "Beginning ${scriptBasename}" + # Variables from config file if is_file "../etc/mackup.cfg"; then - source "../etc/mackup.cfg" - TESTFILE="$TESTCFG" + verbose "Sourcing ../etc/mackup.cfg" && source "../etc/mackup.cfg" + TESTFILE="${TESTCFG}" else - die "Can not run without config file" + die "Can not run without config file. Please locate mackup.cfg" fi -if is_not_file "$TESTFILE"; then - die "Could not find $TESTFILE. Exiting." +if is_not_file "${TESTFILE}"; then + die "Could not find ${TESTFILE}. Exiting." else notice "Confirming that Dropbox has synced..." while IFS= read -r file do - while [ ! -e $HOME/"$file" ] ; + while [ ! -e $HOME/"${file}" ] ; do - notice "Waiting for Dropbox to Sync files." + warning "...Waiting for Dropbox to Sync ${file}." sleep 10 done - success "Found $file" - done < "$TESTFILE" -fi \ No newline at end of file + success "Found ${file}" + done < "${TESTFILE}" +fi + + +header "Completed ${scriptBasename}" +############## End Script Here ################### +} + +############## Begin Options and Usage ################### + + +# Print usage +usage() { + echo -n "${scriptName} [OPTION]... [FILE]... + +This is my script template. + + Options: + -u, --username Username for script + -p, --password User password + -f, --force Skip all user interaction. Implied 'Yes' to all actions + -q, --quiet Quiet (no output) + -l, --log Print log to file + -s, --strict Exit script with null variables. i.e 'set -o nounset' + -v, --verbose Output more information. (Items echoed to 'verbose') + -d, --debug Runs script in BASH debug mode (set -x) + -h, --help Display this help and exit + --version Output version information and exit +" +} + +# Iterate over options breaking -ab into -a -b when needed and --foo=bar into +# --foo bar +optstring=h +unset options +while (($#)); do + case $1 in + # If option is of type -ab + -[!-]?*) + # Loop over each character starting with the second + for ((i=1; i < ${#1}; i++)); do + c=${1:i:1} + + # Add current char to options + options+=("-$c") + + # If option takes a required argument, and it's not the last char make + # the rest of the string its argument + if [[ $optstring = *"$c:"* && ${1:i+1} ]]; then + options+=("${1:i+1}") + break + fi + done + ;; + + # If option is of type --foo=bar + --?*=*) options+=("${1%%=*}" "${1#*=}") ;; + # add --endopts for -- + --) options+=(--endopts) ;; + # Otherwise, nothing special + *) options+=("$1") ;; + esac + shift +done +set -- "${options[@]}" +unset options + +# Print help if no arguments were passed. +# Uncomment to force arguments when invoking the script +# [[ $# -eq 0 ]] && set -- "--help" + +# Read the options and set stuff +while [[ $1 = -?* ]]; do + case $1 in + -h|--help) usage >&2; safeExit ;; + --version) echo "$(basename $0) $version"; safeExit ;; + -u|--username) shift; username=$1 ;; + -p|--password) shift; password=$1 ;; + -v|--verbose) verbose=1 ;; + -l|--log) printLog=1 ;; + -q|--quiet) quiet=1 ;; + -s|--strict) strict=1;; + -d|--debug) debug=1;; + -f|--force) force=1 ;; + --endopts) shift; break ;; + *) die "invalid option: '$1'." ;; + esac + shift +done + + +############## End Options and Usage ################### + + + + +# ############# ############# ############# +# ## TIME TO RUN THE SCRIPT ## +# ## ## +# ## You shouldn't need to edit anything ## +# ## beneath this line ## +# ## ## +# ############# ############# ############# + +# Trap bad exits with your cleanup function +trap trapCleanup EXIT INT TERM + +# Exit on error. Append ||true if you expect an error. +set -o errexit + +# Run in debug mode, if set +if [ "${debug}" == "1" ]; then + set -x +fi + +# Exit on empty variable +if [ "${strict}" == "1" ]; then + set -o nounset +fi + +# Bash will remember & return the highest exitcode in a chain of pipes. +# This way you can catch the error in case mysqldump fails in `mysqldump |gzip` +set -o pipefail + + +mainScript # Run your script + +safeExit # Exit cleanly \ No newline at end of file diff --git a/setupScripts/mackup.sh b/setupScripts/mackup.sh index 5a568c6..0c7282b 100755 --- a/setupScripts/mackup.sh +++ b/setupScripts/mackup.sh @@ -1,26 +1,106 @@ #!/usr/bin/env bash # ################################################## -# This script will in restore a new computer from a mackup backup -# using Dropbox. It requires a config file in '../etc' to run. +# My Generic BASH script template # -# HISTORY -# * 2015-01-02 - Initial creation +version="1.0.0" # Sets version variable for this script # -# NOTE: This script ensure that a Dropbox sync has been completed -# by keeping a list of files up-to-date. These files are listed (one -# per line) in a text file. If this file falls out of date, this -# script will never run +scriptTemplateVersion="1.1.0" # Version of scriptTemplate.sh +# that this script is based on +# +# A Bash script boilerplate. Allows for common functions, logging, tmp +# file creation, CL option passing, and more. +# +# For logging levels use the following functions: +# - header: Prints a script header +# - input: Ask for user input +# - success: Print script success +# - info: Print information to the user +# - notice: Notify the user of something +# - warning: Warn the user of something +# - error: Print a non-fatal error +# - die: A fatal error. Will exit the script +# - debug: Debug information +# - verbose: Debug info only printed when 'verbose' flag is set to 'true'. +# +# HISTORY: +# +# * 2015-02-07 - v1.0.0 - First Creation # # ################################################## -# Source utils +# Source Scripting Utilities +# ----------------------------------- +# If these can't be found, update the path to the file +# ----------------------------------- if [ -f "../lib/utils.sh" ]; then source "../lib/utils.sh" else - echo "You must have utils.sh to run. Exiting." - exit 0 + echo "Please find the file util.sh and add a reference to it in this script. Exiting." + exit 1 fi +# trapCleanup Function +# ----------------------------------- +# Any actions that should be taken if the script is prematurely +# exited. Always call this function at the top of your script. +# ----------------------------------- +function trapCleanup() { + echo "" + if is_dir "${tmpDir}"; then + rm -r "${tmpDir}" + fi + die "Exit trapped." # Edit this if you like. +} + +# Set Flags +# ----------------------------------- +# Flags which can be overridden by user input. +# Default values are below +# ----------------------------------- +quiet=0 +printLog=0 +verbose=0 +force=0 +strict=0 +debug=0 + +# Set Local Variables +# ----------------------------------- +# A set of variables used by many scripts +# ----------------------------------- + +# Set Script name and location variables +scriptName=`basename ${0}` # Full name +scriptBasename="$(basename ${scriptName} .sh)" # Strips '.sh' from name +scriptPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +# Set time stamp +now=$(date +"%m-%d-%Y %r") +# Set hostname +thisHost=$(hostname) + +# Create temp directory with three random numbers and the process ID +# in the name. This directory is removed automatically at exit. +tmpDir="/tmp/${scriptName}.$RANDOM.$RANDOM.$RANDOM.$$" +(umask 077 && mkdir "${tmpDir}") || { + die "Could not create temporary directory! Exiting." +} + +# Logging +# ----------------------------------- +# Log is only used when the '-l' flag is set. +# +# To never save a logfile change variable to '/dev/null' +# Save to Desktop use: $HOME/Desktop/${scriptBasename}.log +# Save to standard user log location use: $HOME/Library/Logs/${scriptBasename}.log +# ----------------------------------- +logFile="$HOME/Library/Logs/${scriptBasename}.log" + + +function mainScript() { +############## Begin Script Here ################### +header "Beginning ${scriptName}" + # Variables from config file if is_file "../etc/mackup.cfg"; then @@ -28,7 +108,7 @@ if is_file "../etc/mackup.cfg"; then MACKUPDIR="$DIRCFG" TESTFILE="$TESTCFG" else - die "Can not run without config file" + die "Can not run without config file. Please find mackup.cfg" fi #Run Dropbox checking function @@ -38,53 +118,182 @@ hasDropbox # IMPORTANT: As time moves, some of these files may be deleted. Ensure this list is kept up-to-date. # This can be tested by running dropboxFileTest.sh script. -if is_not_file "$TESTFILE"; then - die "Could not find $TESTFILE. Exiting." -else - notice "Confirming that Dropbox has synced..." - while IFS= read -r file - do - while [ ! -e $HOME/"$file" ] ; +if [ "${force}" = "0" ]; then #Bypass the Dropbox test when script is forced + if is_not_file "${TESTFILE}"; then + die "Could not find ${TESTFILE}. Exiting." + else + notice "Confirming that Dropbox has synced..." + while IFS= read -r file do - notice "Waiting for Dropbox to Sync files." - sleep 10 - done - done < "$TESTFILE" + while [ ! -e $HOME/"${file}" ] ; + do + info "...Waiting for Dropbox to Sync files." + sleep 10 + done + done < "${TESTFILE}" + fi + + #Add some additional time just to be sure.... + info "...Waiting for Dropbox to Sync files." + sleep 10 + info "...Waiting for Dropbox to Sync files." + sleep 10 + + # Sync Complete + success "Hooray! Dropbox has synced the necessary files." fi -#Add some additional time just to be sure.... -notice "Waiting for Dropbox to Sync files." -sleep 10 -notice "Waiting for Dropbox to Sync files." -sleep 10 -notice "Waiting for Dropbox to Sync files." -sleep 10 - -# Sync Complete -success "Hooray! Dropbox has synced the necessary files." if type_not_exists 'mackup'; then - info "Run 'brew install mackup' or run the Homebrew setup script." + warning "Run 'brew install mackup' or run the Homebrew setup script." die "MACKUP NOT FOUND." +else + verbose "Mackup is installed." fi -# upgrade mackup. Don't display in terminal -brew upgrade mackup >/dev/null 2>&1 - notice "Checking for Mackup config files..." -if is_not_symlink ""$HOME"/.mackup"; then - ln -s "$MACKUPDIR"/.mackup "$HOME"/.mackup +if is_not_symlink "$HOME/.mackup"; then + notice "Symlinking ~/.mackup" + ln -s "${MACKUPDIR}"/.mackup "$HOME"/.mackup +else + verbose "~/.mackup is symlinked" fi -if is_not_symlink ""$HOME"/.mackup.cfg"; then - ln -s "$MACKUPDIR"/.mackup.cfg "$HOME"/.mackup.cfg +if is_not_symlink "${HOME}/.mackup.cfg"; then + notice "Symlinking ~/.mackup.cfg" + ln -s "${MACKUPDIR}"/.mackup.cfg "${HOME}"/.mackup.cfg +else + verbose "~/.mackup.cfg is symlinked" fi -success "Mackup config files linked." +success "Mackup config files are symlinked." seek_confirmation "Run Mackup Restore?" if is_confirmed; then - mackup restore + verbose "Running mackup restore" && mackup restore header "All Done." -else - notice "Exiting" - exit 0 -fi \ No newline at end of file +fi + + +header "Completed ${scriptName}" +############## End Script Here ################### +} + +############## Begin Options and Usage ################### + + +# Print usage +usage() { + echo -n "${scriptName} [OPTION]... [FILE]... + +This is my script template. + + Options: + -u, --username Username for script + -p, --password User password + -f, --force Skip all user interaction. Implied 'Yes' to all actions + -q, --quiet Quiet (no output) + -l, --log Print log to file + -s, --strict Exit script with null variables. i.e 'set -o nounset' + -v, --verbose Output more information. (Items echoed to 'verbose') + -d, --debug Runs script in BASH debug mode (set-x) + -h, --help Display this help and exit + --version Output version information and exit +" +} + +# Iterate over options breaking -ab into -a -b when needed and --foo=bar into +# --foo bar +optstring=h +unset options +while (($#)); do + case $1 in + # If option is of type -ab + -[!-]?*) + # Loop over each character starting with the second + for ((i=1; i < ${#1}; i++)); do + c=${1:i:1} + + # Add current char to options + options+=("-$c") + + # If option takes a required argument, and it's not the last char make + # the rest of the string its argument + if [[ $optstring = *"$c:"* && ${1:i+1} ]]; then + options+=("${1:i+1}") + break + fi + done + ;; + + # If option is of type --foo=bar + --?*=*) options+=("${1%%=*}" "${1#*=}") ;; + # add --endopts for -- + --) options+=(--endopts) ;; + # Otherwise, nothing special + *) options+=("$1") ;; + esac + shift +done +set -- "${options[@]}" +unset options + +# Print help if no arguments were passed. +# Uncomment to force arguments when invoking the script +# [[ $# -eq 0 ]] && set -- "--help" + +# Read the options and set stuff +while [[ $1 = -?* ]]; do + case $1 in + -h|--help) usage >&2; safeExit ;; + --version) echo "$(basename $0) $version"; safeExit ;; + -u|--username) shift; username=$1 ;; + -p|--password) shift; password=$1 ;; + -v|--verbose) verbose=1 ;; + -l|--log) printLog=1 ;; + -q|--quiet) quiet=1 ;; + -s|--strict) strict=1;; + -d|--debug) debug=1;; + -f|--force) force=1 ;; + --endopts) shift; break ;; + *) die "invalid option: '$1'." ;; + esac + shift +done + + +############## End Options and Usage ################### + + + + +# ############# ############# ############# +# ## TIME TO RUN THE SCRIPT ## +# ## ## +# ## You shouldn't need to edit anything ## +# ## beneath this line ## +# ## ## +# ############# ############# ############# + +# Run in debug mode, if set +if [ "${debug}" == "1" ]; then + set -x +fi + +# Trap bad exits with your cleanup function +trap trapCleanup EXIT INT TERM + +# Exit on error. Append ||true if you expect an error. +set -o errexit + +# Exit on empty variable +if [ "${strict}" = "1" ]; then + set -o nounset +fi + +# Bash will remember & return the highest exitcode in a chain of pipes. +# This way you can catch the error in case mysqldump fails in `mysqldump |gzip` +set -o pipefail + + +mainScript # Run your script + +safeExit # Exit cleanly \ No newline at end of file diff --git a/setupScripts/osx.sh b/setupScripts/osx.sh index e1de9d9..56deea9 100755 --- a/setupScripts/osx.sh +++ b/setupScripts/osx.sh @@ -1,13 +1,107 @@ #!/usr/bin/env bash -# Inspired by ~/.osx — http://mths.be/osx +# ################################################## +# My Generic BASH script template +# +version="1.0.0" # Sets version variable for this script +# +scriptTemplateVersion="1.1.0" # Version of scriptTemplate.sh that this script is based on +# v.1.1.0 - Added 'debug' option +# +# A Bash script boilerplate. Allows for common functions, logging, tmp +# file creation, CL option passing, and more. +# +# For logging levels use the following functions: +# - header: Prints a script header +# - input: Ask for user input +# - success: Print script success +# - info: Print information to the user +# - notice: Notify the user of something +# - warning: Warn the user of something +# - error: Print a non-fatal error +# - die: A fatal error. Will exit the script +# - debug: Debug information +# - verbose: Debug info only printed when 'verbose' flag is set to 'true'. +# +# HISTORY: +# +# * DATE - v1.0.0 - First Creation +# +# ################################################## +# Source Scripting Utilities +# ----------------------------------- +# If these can't be found, update the path to the file +# ----------------------------------- if [ -f "../lib/utils.sh" ]; then source "../lib/utils.sh" else - echo "You must have utils.sh to run. Exiting." - exit 0 + echo "Please find the file util.sh and add a reference to it in this script. Exiting." + exit 1 fi +# trapCleanup Function +# ----------------------------------- +# Any actions that should be taken if the script is prematurely +# exited. Always call this function at the top of your script. +# ----------------------------------- +function trapCleanup() { + echo "" + if is_dir "${tmpDir}"; then + rm -r "${tmpDir}" + fi + die "Exit trapped." # Edit this if you like. +} + +# Set Flags +# ----------------------------------- +# Flags which can be overridden by user input. +# Default values are below +# ----------------------------------- +quiet=0 +printLog=0 +verbose=0 +force=0 +strict=0 +debug=0 + + +# Set Local Variables +# ----------------------------------- +# A set of variables used by many scripts +# ----------------------------------- + +# Set Script name and location variables +scriptName=`basename ${0}` # Full name +scriptBasename="$(basename ${scriptName} .sh)" # Strips '.sh' from name +scriptPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +# Set time stamp +now=$(date +"%m-%d-%Y %r") +# Set hostname +thisHost=$(hostname) + +# Create temp directory with three random numbers and the process ID +# in the name. This directory is removed automatically at exit. + tmpDir="/tmp/${scriptName}.$RANDOM.$RANDOM.$RANDOM.$$" + (umask 077 && mkdir "${tmpDir}") || { + die "Could not create temporary directory! Exiting." + } + +# Logging +# ----------------------------------- +# Log is only used when the '-l' flag is set. +# +# To never save a logfile change variable to '/dev/null' +# Save to Desktop use: $HOME/Desktop/${scriptBasename}.log +# Save to standard user log location use: $HOME/Library/Logs/${scriptBasename}.log +# ----------------------------------- +logFile="$HOME/Library/Logs/${scriptBasename}.log" + + +function mainScript() { +############## Begin Script Here ################### +header "Running ${scriptBasename}" + # Grant sudo privs. needSudo @@ -26,16 +120,16 @@ if is_confirmed; then fi ############################################################################ -# 1. General UI/UX +# 1. General UI/UX ############################################################################ seek_confirmation "Run General UI Tweaks?" if is_confirmed; then - success "Disabled Sound Effects on Boot" - sudo nvram SystemAudioVolume=" " + success "Disabled Sound Effects on Boot" + sudo nvram SystemAudioVolume=" " - success "Hide the Time Machine, Volume, User, and Bluetooth icons" + success "Hide the Time Machine, Volume, User, and Bluetooth icons" # Get the system Hardware UUID and use it for the next menubar stuff for domain in ~/Library/Preferences/ByHost/com.apple.systemuiserver.*; do defaults write "${domain}" dontAutoLoad -array \ @@ -50,475 +144,475 @@ if is_confirmed; then "/System/Library/CoreServices/Menu Extras/Battery.menu" \ "/System/Library/CoreServices/Menu Extras/Clock.menu" - success "Set highlight color to yellow" - defaults write NSGlobalDomain AppleHighlightColor -string '0.984300 0.929400 0.450900' + success "Set highlight color to yellow" + defaults write NSGlobalDomain AppleHighlightColor -string '0.984300 0.929400 0.450900' - success "Set sidebar icon size to small" - defaults write NSGlobalDomain NSTableViewDefaultSizeMode -int 1 - # Possible values for int: 1=small, 2=medium + success "Set sidebar icon size to small" + defaults write NSGlobalDomain NSTableViewDefaultSizeMode -int 1 + # Possible values for int: 1=small, 2=medium - success "Always show scrollbars" - defaults write NSGlobalDomain AppleShowScrollBars -string "Always" - # Possible values: `WhenScrolling`, `Automatic` and `Always` + success "Always show scrollbars" + defaults write NSGlobalDomain AppleShowScrollBars -string "Always" + # Possible values: `WhenScrolling`, `Automatic` and `Always` - #success "Disable transparency in the menu bar and elsewhere on Yosemite" - #defaults write com.apple.universalaccess reduceTransparency -bool true + #success "Disable transparency in the menu bar and elsewhere on Yosemite" + #defaults write com.apple.universalaccess reduceTransparency -bool true - success "Disable opening and closing window animations" - defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false + success "Disable opening and closing window animations" + defaults write NSGlobalDomain NSAutomaticWindowAnimationsEnabled -bool false - success "Expand save panel by default" - defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true + success "Expand save panel by default" + defaults write NSGlobalDomain NSNavPanelExpandedStateForSaveMode -bool true - success "Expand print panel by default" - defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true - defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true + success "Expand print panel by default" + defaults write NSGlobalDomain PMPrintingExpandedStateForPrint -bool true + defaults write NSGlobalDomain PMPrintingExpandedStateForPrint2 -bool true - success "Save to disk (not to iCloud) by default" - defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false + success "Save to disk (not to iCloud) by default" + defaults write NSGlobalDomain NSDocumentSaveNewDocumentsToCloud -bool false - success "Automatically quit printer app once the print jobs complete" - defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true + success "Automatically quit printer app once the print jobs complete" + defaults write com.apple.print.PrintingPrefs "Quit When Finished" -bool true - success "Disable the Are you sure you want to open this application? dialog" - defaults write com.apple.LaunchServices LSQuarantine -bool false + success "Disable the Are you sure you want to open this application? dialog" + defaults write com.apple.LaunchServices LSQuarantine -bool false - success "General:Display ASCII control characters using caret notation in standard text views" - # Try e.g. `cd /tmp; unidecode "\x{0000}" > cc.txt; open -e cc.txt` - defaults write NSGlobalDomain NSTextShowsControlCharacters -bool true + success "General:Display ASCII control characters using caret notation in standard text views" + # Try e.g. `cd /tmp; unidecode "\x{0000}" > cc.txt; open -e cc.txt` + defaults write NSGlobalDomain NSTextShowsControlCharacters -bool true - success "Disable automatic termination of inactive apps" - defaults write NSGlobalDomain NSDisableAutomaticTermination -bool true + success "Disable automatic termination of inactive apps" + defaults write NSGlobalDomain NSDisableAutomaticTermination -bool true - success "Disable Resume system-wide" - defaults write com.apple.systempreferences NSQuitAlwaysKeepsWindows -bool false + success "Disable Resume system-wide" + defaults write com.apple.systempreferences NSQuitAlwaysKeepsWindows -bool false - success "Set Help Viewer windows to non-floating mode" - defaults write com.apple.helpviewer DevMode -bool true + success "Set Help Viewer windows to non-floating mode" + defaults write com.apple.helpviewer DevMode -bool true - success "Reveal info when clicking the clock in the login window" - sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName + success "Reveal info when clicking the clock in the login window" + sudo defaults write /Library/Preferences/com.apple.loginwindow AdminHostInfo HostName - #success "Restart automatically if the computer freezes" - #systemsetup -setrestartfreeze on + #success "Restart automatically if the computer freezes" + #systemsetup -setrestartfreeze on - #success "Never go into computer sleep mode" - #systemsetup -setcomputersleep Off > /dev/null + #success "Never go into computer sleep mode" + #systemsetup -setcomputersleep Off > /dev/null - success "Check for software updates daily, not just once per week" - defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 + success "Check for software updates daily, not just once per week" + defaults write com.apple.SoftwareUpdate ScheduleFrequency -int 1 - #success "Disable Notification Center and remove the menu bar icon" - #launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist 2> /dev/null + #success "Disable Notification Center and remove the menu bar icon" + #launchctl unload -w /System/Library/LaunchAgents/com.apple.notificationcenterui.plist 2> /dev/null - success "Disabled smart quotes as they are annoying when typing code" - defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false + success "Disabled smart quotes as they are annoying when typing code" + defaults write NSGlobalDomain NSAutomaticQuoteSubstitutionEnabled -bool false - success "Disabled smart dashes as they are annoying when typing code" - defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false + success "Disabled smart dashes as they are annoying when typing code" + defaults write NSGlobalDomain NSAutomaticDashSubstitutionEnabled -bool false - success "Removing duplicates in the 'Open With' menu" - /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user + success "Removing duplicates in the 'Open With' menu" + /System/Library/Frameworks/CoreServices.framework/Frameworks/LaunchServices.framework/Support/lsregister -kill -r -domain local -domain system -domain user - #success "Disable hibernation? (speeds up entering sleep mode)" - #sudo pmset -a hibernatemode 0 + #success "Disable hibernation? (speeds up entering sleep mode)" + #sudo pmset -a hibernatemode 0 fi ############################################################################### -# 2. Trackpad, mouse, keyboard, Bluetooth accessories, and input +# 2. Trackpad, mouse, keyboard, Bluetooth accessories, and input ############################################################################### seek_confirmation "Run Trackpad, Mouse, Keyboard Tweaks?" if is_confirmed; then - #success "Trackpad: enable tap to click for this user and for the login screen" - #defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true - #defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 - #defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 + #success "Trackpad: enable tap to click for this user and for the login screen" + #defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad Clicking -bool true + #defaults -currentHost write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 + #defaults write NSGlobalDomain com.apple.mouse.tapBehavior -int 1 - # success "Trackpad: map bottom right corner to right-click" - # defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2 - # defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true - # defaults -currentHost write NSGlobalDomain com.apple.trackpad.trackpadCornerClickBehavior -int 1 - # defaults -currentHost write NSGlobalDomain com.apple.trackpad.enableSecondaryClick -bool true + # success "Trackpad: map bottom right corner to right-click" + # defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadCornerSecondaryClick -int 2 + # defaults write com.apple.driver.AppleBluetoothMultitouch.trackpad TrackpadRightClick -bool true + # defaults -currentHost write NSGlobalDomain com.apple.trackpad.trackpadCornerClickBehavior -int 1 + # defaults -currentHost write NSGlobalDomain com.apple.trackpad.enableSecondaryClick -bool true - # success "Disable “natural” (Lion-style) scrolling" - # defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false + # success "Disable “natural” (Lion-style) scrolling" + # defaults write NSGlobalDomain com.apple.swipescrolldirection -bool false - success "Setting trackpad & mouse speed to a reasonable number" - defaults write -g com.apple.trackpad.scaling 2 - defaults write -g com.apple.mouse.scaling 2.5 + success "Setting trackpad & mouse speed to a reasonable number" + defaults write -g com.apple.trackpad.scaling 2 + defaults write -g com.apple.mouse.scaling 2.5 - success "Increase sound quality for Bluetooth headphones/headsets" - defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40 + success "Increase sound quality for Bluetooth headphones/headsets" + defaults write com.apple.BluetoothAudioAgent "Apple Bitpool Min (editable)" -int 40 - success "Enable full keyboard access for all controls" - # (e.g. enable Tab in modal dialogs) - defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 + success "Enable full keyboard access for all controls" + # (e.g. enable Tab in modal dialogs) + defaults write NSGlobalDomain AppleKeyboardUIMode -int 3 - success "Use scroll gesture with the Ctrl (^) modifier key to zoom" - defaults write com.apple.universalaccess closeViewScrollWheelToggle -bool true - defaults write com.apple.universalaccess HIDScrollZoomModifierMask -int 262144 - # Follow the keyboard focus while zoomed in - defaults write com.apple.universalaccess closeViewZoomFollowsFocus -bool true + success "Use scroll gesture with the Ctrl (^) modifier key to zoom" + defaults write com.apple.universalaccess closeViewScrollWheelToggle -bool true + defaults write com.apple.universalaccess HIDScrollZoomModifierMask -int 262144 + # Follow the keyboard focus while zoomed in + defaults write com.apple.universalaccess closeViewZoomFollowsFocus -bool true - success "Disable press-and-hold for keys in favor of key repeat" - defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false + success "Disable press-and-hold for keys in favor of key repeat" + defaults write NSGlobalDomain ApplePressAndHoldEnabled -bool false - success "Set a blazingly fast keyboard repeat rate" - defaults write NSGlobalDomain KeyRepeat -int 0 + success "Set a blazingly fast keyboard repeat rate" + defaults write NSGlobalDomain KeyRepeat -int 0 - success "Automatically illuminate built-in MacBook keyboard in low light" - defaults write com.apple.BezelServices kDim -bool true + success "Automatically illuminate built-in MacBook keyboard in low light" + defaults write com.apple.BezelServices kDim -bool true - success "Turn off keyboard illumination when computer is not used for 5 minutes" - defaults write com.apple.BezelServices kDimTime -int 300 + success "Turn off keyboard illumination when computer is not used for 5 minutes" + defaults write com.apple.BezelServices kDimTime -int 300 - success "Set language and text formats" - # Note: if you’re in the US, replace `EUR` with `USD`, `Centimeters` with - # `Inches`, `en_GB` with `en_US`, and `true` with `false`. - defaults write NSGlobalDomain AppleLanguages -array "en" "nl" - defaults write NSGlobalDomain AppleLocale -string "en_US@currency=USD" - defaults write NSGlobalDomain AppleMeasurementUnits -string "Inches" - defaults write NSGlobalDomain AppleMetricUnits -bool false + success "Set language and text formats" + # Note: if you’re in the US, replace `EUR` with `USD`, `Centimeters` with + # `Inches`, `en_GB` with `en_US`, and `true` with `false`. + defaults write NSGlobalDomain AppleLanguages -array "en" "nl" + defaults write NSGlobalDomain AppleLocale -string "en_US@currency=USD" + defaults write NSGlobalDomain AppleMeasurementUnits -string "Inches" + defaults write NSGlobalDomain AppleMetricUnits -bool false - success "Set the timezone" - systemsetup -settimezone "America/New_York" > /dev/null - #see `systemsetup -listtimezones` for other values + success "Set the timezone" + systemsetup -settimezone "America/New_York" > /dev/null + #see `systemsetup -listtimezones` for other values - #success "Disable spelling auto-correct" - #defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false + #success "Disable spelling auto-correct" + #defaults write NSGlobalDomain NSAutomaticSpellingCorrectionEnabled -bool false - # Stop iTunes from responding to the keyboard media keys - #launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist 2> /dev/null + # Stop iTunes from responding to the keyboard media keys + #launchctl unload -w /System/Library/LaunchAgents/com.apple.rcd.plist 2> /dev/null fi ############################################################################### -# 3. Screen +# 3. Screen ############################################################################### seek_confirmation "Run Screen Configurations?" if is_confirmed; then - success "Require password immediately after sleep or screen saver begins" - defaults write com.apple.screensaver askForPassword -int 1 - defaults write com.apple.screensaver askForPasswordDelay -int 0 + success "Require password immediately after sleep or screen saver begins" + defaults write com.apple.screensaver askForPassword -int 1 + defaults write com.apple.screensaver askForPasswordDelay -int 0 - success "Save screenshots to the desktop" - defaults write com.apple.screencapture location -string "${HOME}/Desktop" + success "Save screenshots to the desktop" + defaults write com.apple.screencapture location -string "${HOME}/Desktop" - success "Save screenshots in PNG format" - defaults write com.apple.screencapture type -string "png" - # other options: BMP, GIF, JPG, PDF, TIFF, PNG + success "Save screenshots in PNG format" + defaults write com.apple.screencapture type -string "png" + # other options: BMP, GIF, JPG, PDF, TIFF, PNG - #success "Disable shadow in screenshots" - #defaults write com.apple.screencapture disable-shadow -bool true + #success "Disable shadow in screenshots" + #defaults write com.apple.screencapture disable-shadow -bool true - success "Enable subpixel font rendering on non-Apple LCDs" - defaults write NSGlobalDomain AppleFontSmoothing -int 2 + success "Enable subpixel font rendering on non-Apple LCDs" + defaults write NSGlobalDomain AppleFontSmoothing -int 2 - #success "Enabling HiDPI display modes (requires restart)" - #sudo defaults write /Library/Preferences/com.apple.windowserver DisplayResolutionEnabled -bool true + #success "Enabling HiDPI display modes (requires restart)" + #sudo defaults write /Library/Preferences/com.apple.windowserver DisplayResolutionEnabled -bool true fi ############################################################################### -# 4. Finder +# 4. Finder ############################################################################### seek_confirmation "Run Finder Tweaks?" if is_confirmed; then - success "Finder: allow quitting via ⌘ + Q" - defaults write com.apple.finder QuitMenuItem -bool true + success "Finder: allow quitting via ⌘ + Q" + defaults write com.apple.finder QuitMenuItem -bool true - success "Finder: disable window animations and Get Info animations" - defaults write com.apple.finder DisableAllAnimations -bool true + success "Finder: disable window animations and Get Info animations" + defaults write com.apple.finder DisableAllAnimations -bool true - success "Set Home Folder as the default location for new Finder windows" - # For other paths, use `PfLo` and `file:///full/path/here/` - defaults write com.apple.finder NewWindowTarget -string "PfDe" - defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}/" + success "Set Home Folder as the default location for new Finder windows" + # For other paths, use `PfLo` and `file:///full/path/here/` + defaults write com.apple.finder NewWindowTarget -string "PfDe" + defaults write com.apple.finder NewWindowTargetPath -string "file://${HOME}/" - success "Show icons for hard drives, servers, and removable media on the desktop" - defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true - defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true - defaults write com.apple.finder ShowMountedServersOnDesktop -bool true - defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true + success "Show icons for hard drives, servers, and removable media on the desktop" + defaults write com.apple.finder ShowExternalHardDrivesOnDesktop -bool true + defaults write com.apple.finder ShowHardDrivesOnDesktop -bool true + defaults write com.apple.finder ShowMountedServersOnDesktop -bool true + defaults write com.apple.finder ShowRemovableMediaOnDesktop -bool true - #success "Finder: show hidden files by default" - #defaults write com.apple.finder AppleShowAllFiles -bool true + #success "Finder: show hidden files by default" + #defaults write com.apple.finder AppleShowAllFiles -bool true - success "Finder: show all filename extensions" - defaults write NSGlobalDomain AppleShowAllExtensions -bool true + success "Finder: show all filename extensions" + defaults write NSGlobalDomain AppleShowAllExtensions -bool true - success "Finder: show status bar" - defaults write com.apple.finder ShowStatusBar -bool true + success "Finder: show status bar" + defaults write com.apple.finder ShowStatusBar -bool true - success "Finder: show path bar" - defaults write com.apple.finder ShowPathbar -bool true + success "Finder: show path bar" + defaults write com.apple.finder ShowPathbar -bool true - success "Finder: allow text selection in Quick Look" - defaults write com.apple.finder QLEnableTextSelection -bool true + success "Finder: allow text selection in Quick Look" + defaults write com.apple.finder QLEnableTextSelection -bool true - #success "Display full POSIX path as Finder window title" - #defaults write com.apple.finder _FXShowPosixPathInTitle -bool true + #success "Display full POSIX path as Finder window title" + #defaults write com.apple.finder _FXShowPosixPathInTitle -bool true - success "When performing a search, search the current folder by default" - defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" + success "When performing a search, search the current folder by default" + defaults write com.apple.finder FXDefaultSearchScope -string "SCcf" - success "Disable the warning when changing a file extension" - defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false + success "Disable the warning when changing a file extension" + defaults write com.apple.finder FXEnableExtensionChangeWarning -bool false - success "Enable spring loading for directories" - defaults write NSGlobalDomain com.apple.springing.enabled -bool true + success "Enable spring loading for directories" + defaults write NSGlobalDomain com.apple.springing.enabled -bool true - success "Remove the spring loading delay for directories" - defaults write NSGlobalDomain com.apple.springing.delay -float 0 + success "Remove the spring loading delay for directories" + defaults write NSGlobalDomain com.apple.springing.delay -float 0 - success "Avoid creating .DS_Store files on network volumes" - defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true + success "Avoid creating .DS_Store files on network volumes" + defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool true - success "Disable disk image verification" - defaults write com.apple.frameworks.diskimages skip-verify -bool true - defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true - defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true + success "Disable disk image verification" + defaults write com.apple.frameworks.diskimages skip-verify -bool true + defaults write com.apple.frameworks.diskimages skip-verify-locked -bool true + defaults write com.apple.frameworks.diskimages skip-verify-remote -bool true - # success "Automatically open a new Finder window when a volume is mounted" - # defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true - # defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true - # defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true + # success "Automatically open a new Finder window when a volume is mounted" + # defaults write com.apple.frameworks.diskimages auto-open-ro-root -bool true + # defaults write com.apple.frameworks.diskimages auto-open-rw-root -bool true + # defaults write com.apple.finder OpenWindowForNewRemovableDisk -bool true - success "Show item info near icons on the desktop and in other icon views" - /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist + success "Show item info near icons on the desktop and in other icon views" + /usr/libexec/PlistBuddy -c "Set :DesktopViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set :FK_StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set :StandardViewSettings:IconViewSettings:showItemInfo true" ~/Library/Preferences/com.apple.finder.plist - success "Show item info to the right of the icons on the desktop" - /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:labelOnBottom false" ~/Library/Preferences/com.apple.finder.plist + success "Show item info to the right of the icons on the desktop" + /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:labelOnBottom false" ~/Library/Preferences/com.apple.finder.plist - success "Enable snap-to-grid for icons on the desktop and in other icon views" - /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set FK_StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist + success "Enable snap-to-grid for icons on the desktop and in other icon views" + /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set FK_StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set StandardViewSettings:IconViewSettings:arrangeBy grid" ~/Library/Preferences/com.apple.finder.plist - success "Increase grid spacing for icons on the desktop and in other icon views" - /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set FK_StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist + success "Increase grid spacing for icons on the desktop and in other icon views" + /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set FK_StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set StandardViewSettings:IconViewSettings:gridSpacing 100" ~/Library/Preferences/com.apple.finder.plist - success "Increase the size of icons on the desktop and in other icon views" - /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:iconSize 40" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set FK_StandardViewSettings:IconViewSettings:iconSize 40" ~/Library/Preferences/com.apple.finder.plist - /usr/libexec/PlistBuddy -c "Set StandardViewSettings:IconViewSettings:iconSize 40" ~/Library/Preferences/com.apple.finder.plist + success "Increase the size of icons on the desktop and in other icon views" + /usr/libexec/PlistBuddy -c "Set DesktopViewSettings:IconViewSettings:iconSize 40" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set FK_StandardViewSettings:IconViewSettings:iconSize 40" ~/Library/Preferences/com.apple.finder.plist + /usr/libexec/PlistBuddy -c "Set StandardViewSettings:IconViewSettings:iconSize 40" ~/Library/Preferences/com.apple.finder.plist - success "Use column view in all Finder windows by default" - defaults write com.apple.finder FXPreferredViewStyle -string "clmv" - # Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv`, `Nlsv` + success "Use column view in all Finder windows by default" + defaults write com.apple.finder FXPreferredViewStyle -string "clmv" + # Four-letter codes for the other view modes: `icnv`, `clmv`, `Flwv`, `Nlsv` - success "Disable the warning before emptying the Trash" - defaults write com.apple.finder WarnOnEmptyTrash -bool false + success "Disable the warning before emptying the Trash" + defaults write com.apple.finder WarnOnEmptyTrash -bool false - # success "Empty Trash securely by default" - # defaults write com.apple.finder EmptyTrashSecurely -bool true + # success "Empty Trash securely by default" + # defaults write com.apple.finder EmptyTrashSecurely -bool true - success "Show the ~/Library folder" - chflags nohidden ~/Library + success "Show the ~/Library folder" + chflags nohidden ~/Library - #success "Remove Dropbox’s green checkmark icons in Finder" - #file=/Applications/Dropbox.app/Contents/Resources/emblem-dropbox-uptodate.icns - #[ -e "${file}" ] && mv -f "${file}" "${file}.bak" + #success "Remove Dropbox’s green checkmark icons in Finder" + #file=/Applications/Dropbox.app/Contents/Resources/emblem-dropbox-uptodate.icns + #[ -e "${file}" ] && mv -f "${file}" "${file}.bak" - success "Expand File Info panes" - # “General”, “Open with”, and “Sharing & Permissions” - defaults write com.apple.finder FXInfoPanesExpanded -dict \ - General -bool true \ - OpenWith -bool true \ - Privileges -bool true + success "Expand File Info panes" + # “General”, “Open with”, and “Sharing & Permissions” + defaults write com.apple.finder FXInfoPanesExpanded -dict \ + General -bool true \ + OpenWith -bool true \ + Privileges -bool true fi # Enable AirDrop over Ethernet and on unsupported Macs running Lion defaults write com.apple.NetworkBrowser BrowseAllInterfaces -bool true ############################################################################### -# 5. Dock, Dashboard, and hot corners +# 5. Dock, Dashboard, and hot corners ############################################################################### seek_confirmation "Configure Dock, Dashboard, Corners?" if is_confirmed; then - success "Enable highlight hover effect for the grid view of a stack" - defaults write com.apple.dock mouse-over-hilite-stack -bool true + success "Enable highlight hover effect for the grid view of a stack" + defaults write com.apple.dock mouse-over-hilite-stack -bool true - success "Set the icon size of Dock items to 36 pixels" - defaults write com.apple.dock tilesize -int 36 + success "Set the icon size of Dock items to 36 pixels" + defaults write com.apple.dock tilesize -int 36 - success "Minimize windows into their application’s icon" - defaults write com.apple.dock minimize-to-application -bool true + success "Minimize windows into their application’s icon" + defaults write com.apple.dock minimize-to-application -bool true - success "Enable spring loading for all Dock items" - defaults write com.apple.dock enable-spring-load-actions-on-all-items -bool true + success "Enable spring loading for all Dock items" + defaults write com.apple.dock enable-spring-load-actions-on-all-items -bool true - success "Show indicator lights for open applications in the Dock" - defaults write com.apple.dock show-process-indicators -bool true + success "Show indicator lights for open applications in the Dock" + defaults write com.apple.dock show-process-indicators -bool true - success "Wipe all (default) app icons from the Dock" - # This is only really useful when setting up a new Mac, or if you don’t use - # the Dock to launch apps. - defaults write com.apple.dock persistent-apps -array + success "Wipe all (default) app icons from the Dock" + # This is only really useful when setting up a new Mac, or if you don’t use + # the Dock to launch apps. + defaults write com.apple.dock persistent-apps -array - success "Don’t animate opening applications from the Dock" - defaults write com.apple.dock launchanim -bool false + success "Don’t animate opening applications from the Dock" + defaults write com.apple.dock launchanim -bool false - success "Speed up Mission Control animations" - defaults write com.apple.dock expose-animation-duration -float 0.1 + success "Speed up Mission Control animations" + defaults write com.apple.dock expose-animation-duration -float 0.1 - # success "Don’t group windows by application in Mission Control" - # # (i.e. use the old Exposé behavior instead) - # defaults write com.apple.dock expose-group-by-app -bool false + # success "Don’t group windows by application in Mission Control" + # # (i.e. use the old Exposé behavior instead) + # defaults write com.apple.dock expose-group-by-app -bool false - success "Disable Dashboard" - defaults write com.apple.dashboard mcx-disabled -bool true + success "Disable Dashboard" + defaults write com.apple.dashboard mcx-disabled -bool true - success "Don’t show Dashboard as a Space" - defaults write com.apple.dock dashboard-in-overlay -bool true + success "Don’t show Dashboard as a Space" + defaults write com.apple.dock dashboard-in-overlay -bool true - # success "Don’t automatically rearrange Spaces based on most recent use" - # defaults write com.apple.dock mru-spaces -bool false + # success "Don’t automatically rearrange Spaces based on most recent use" + # defaults write com.apple.dock mru-spaces -bool false - success "Remove the auto-hiding Dock delay" - defaults write com.apple.dock autohide-delay -float 0 + success "Remove the auto-hiding Dock delay" + defaults write com.apple.dock autohide-delay -float 0 - #success "Remove the animation when hiding/showing the Dock" - #defaults write com.apple.dock autohide-time-modifier -float 0 + #success "Remove the animation when hiding/showing the Dock" + #defaults write com.apple.dock autohide-time-modifier -float 0 - success "Automatically hide and show the Dock" - defaults write com.apple.dock autohide -bool true + success "Automatically hide and show the Dock" + defaults write com.apple.dock autohide -bool true - success "Make Dock icons of hidden applications translucent" - defaults write com.apple.dock showhidden -bool true + success "Make Dock icons of hidden applications translucent" + defaults write com.apple.dock showhidden -bool true - # Add a spacer to the left side of the Dock (where the applications are) - #defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' - # Add a spacer to the right side of the Dock (where the Trash is) - #defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}' + # Add a spacer to the left side of the Dock (where the applications are) + #defaults write com.apple.dock persistent-apps -array-add '{tile-data={}; tile-type="spacer-tile";}' + # Add a spacer to the right side of the Dock (where the Trash is) + #defaults write com.apple.dock persistent-others -array-add '{tile-data={}; tile-type="spacer-tile";}' - success "Disabled hot corners" - # Possible values: - # 0: no-op - # 2: Mission Control - # 3: Show application windows - # 4: Desktop - # 5: Start screen saver - # 6: Disable screen saver - # 7: Dashboard - # 10: Put display to sleep - # 11: Launchpad - # 12: Notification Center - # Top left screen corner → Mission Control - defaults write com.apple.dock wvous-tl-corner -int 0 - defaults write com.apple.dock wvous-tl-modifier -int 0 - # Top right screen corner → Desktop - defaults write com.apple.dock wvous-tr-corner -int 0 - defaults write com.apple.dock wvous-tr-modifier -int 0 - # Bottom left screen corner → Start screen saver - defaults write com.apple.dock wvous-bl-corner -int 0 - defaults write com.apple.dock wvous-bl-modifier -int 0 + success "Disabled hot corners" + # Possible values: + # 0: no-op + # 2: Mission Control + # 3: Show application windows + # 4: Desktop + # 5: Start screen saver + # 6: Disable screen saver + # 7: Dashboard + # 10: Put display to sleep + # 11: Launchpad + # 12: Notification Center + # Top left screen corner → Mission Control + defaults write com.apple.dock wvous-tl-corner -int 0 + defaults write com.apple.dock wvous-tl-modifier -int 0 + # Top right screen corner → Desktop + defaults write com.apple.dock wvous-tr-corner -int 0 + defaults write com.apple.dock wvous-tr-modifier -int 0 + # Bottom left screen corner → Start screen saver + defaults write com.apple.dock wvous-bl-corner -int 0 + defaults write com.apple.dock wvous-bl-modifier -int 0 fi ############################################################################### -# 6. Safari & WebKit +# 6. Safari & WebKit ############################################################################### seek_confirmation "Safari & Webkit tweaks?" if is_confirmed; then - success "Privacy: don’t send search queries to Apple" - defaults write com.apple.Safari UniversalSearchEnabled -bool false - defaults write com.apple.Safari SuppressSearchSuggestions -bool true + success "Privacy: don’t send search queries to Apple" + defaults write com.apple.Safari UniversalSearchEnabled -bool false + defaults write com.apple.Safari SuppressSearchSuggestions -bool true - success "Show the full URL in the address bar (note: this still hides the scheme)" - defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true + success "Show the full URL in the address bar (note: this still hides the scheme)" + defaults write com.apple.Safari ShowFullURLInSmartSearchField -bool true - success "Set Safari’s home page to about:blank for faster loading" - defaults write com.apple.Safari HomePage -string "about:blank" + success "Set Safari’s home page to about:blank for faster loading" + defaults write com.apple.Safari HomePage -string "about:blank" - success "Prevent Safari from opening safe files automatically after downloading" - defaults write com.apple.Safari AutoOpenSafeDownloads -bool false + success "Prevent Safari from opening safe files automatically after downloading" + defaults write com.apple.Safari AutoOpenSafeDownloads -bool false - # success "Allow hitting the Backspace key to go to the previous page in history" - # defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnabled -bool true + # success "Allow hitting the Backspace key to go to the previous page in history" + # defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2BackspaceKeyNavigationEnabled -bool true - # # Hide Safari’s bookmarks bar by default - # defaults write com.apple.Safari ShowFavoritesBar -bool false + # # Hide Safari’s bookmarks bar by default + # defaults write com.apple.Safari ShowFavoritesBar -bool false - # # Hide Safari’s sidebar in Top Sites - # defaults write com.apple.Safari ShowSidebarInTopSites -bool false + # # Hide Safari’s sidebar in Top Sites + # defaults write com.apple.Safari ShowSidebarInTopSites -bool false - # # Disable Safari’s thumbnail cache for History and Top Sites - # defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2 + # # Disable Safari’s thumbnail cache for History and Top Sites + # defaults write com.apple.Safari DebugSnapshotsUpdatePolicy -int 2 - success "Enable Safari’s debug menu" - defaults write com.apple.Safari IncludeInternalDebugMenu -bool true + success "Enable Safari’s debug menu" + defaults write com.apple.Safari IncludeInternalDebugMenu -bool true - success "Make Safari’s search banners default to Contains instead of Starts With" - defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false + success "Make Safari’s search banners default to Contains instead of Starts With" + defaults write com.apple.Safari FindOnPageMatchesWordStartsOnly -bool false - success "Remove useless icons from Safari’s bookmarks bar" - defaults write com.apple.Safari ProxiesInBookmarksBar "()" + success "Remove useless icons from Safari’s bookmarks bar" + defaults write com.apple.Safari ProxiesInBookmarksBar "()" - success "Enable the Develop menu and the Web Inspector in Safari" - defaults write com.apple.Safari IncludeDevelopMenu -bool true - defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true - defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true + success "Enable the Develop menu and the Web Inspector in Safari" + defaults write com.apple.Safari IncludeDevelopMenu -bool true + defaults write com.apple.Safari WebKitDeveloperExtrasEnabledPreferenceKey -bool true + defaults write com.apple.Safari com.apple.Safari.ContentPageGroupIdentifier.WebKit2DeveloperExtrasEnabled -bool true - success "Add a context menu item for showing the Web Inspector in web views" - defaults write NSGlobalDomain WebKitDeveloperExtras -bool true + success "Add a context menu item for showing the Web Inspector in web views" + defaults write NSGlobalDomain WebKitDeveloperExtras -bool true fi ############################################################################### -# 7. Mail +# 7. Mail ############################################################################### seek_confirmation "Configure Mail.app?" if is_confirmed; then - success "Disable send and reply animations in Mail.app" - defaults write com.apple.mail DisableReplyAnimations -bool true - defaults write com.apple.mail DisableSendAnimations -bool true + success "Disable send and reply animations in Mail.app" + defaults write com.apple.mail DisableReplyAnimations -bool true + defaults write com.apple.mail DisableSendAnimations -bool true - success "Copy sane email addresses to clipboard" - # Copy email addresses as `foo@example.com` instead of `Foo Bar ` in Mail.app - defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false + success "Copy sane email addresses to clipboard" + # Copy email addresses as `foo@example.com` instead of `Foo Bar ` in Mail.app + defaults write com.apple.mail AddressesIncludeNameOnPasteboard -bool false - #success "Add the keyboard shortcut ⌘ + Enter to send an email in Mail.app" - #defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" -string "@\\U21a9" + #success "Add the keyboard shortcut ⌘ + Enter to send an email in Mail.app" + #defaults write com.apple.mail NSUserKeyEquivalents -dict-add "Send" -string "@\\U21a9" - success "Display emails in threaded mode, sorted by date (newest at the top)" - defaults write com.apple.mail DraftsViewerAttributes -dict-add "DisplayInThreadedMode" -string "yes" - defaults write com.apple.mail DraftsViewerAttributes -dict-add "SortedDescending" -string "no" - defaults write com.apple.mail DraftsViewerAttributes -dict-add "SortOrder" -string "received-date" + success "Display emails in threaded mode, sorted by date (newest at the top)" + defaults write com.apple.mail DraftsViewerAttributes -dict-add "DisplayInThreadedMode" -string "yes" + defaults write com.apple.mail DraftsViewerAttributes -dict-add "SortedDescending" -string "no" + defaults write com.apple.mail DraftsViewerAttributes -dict-add "SortOrder" -string "received-date" - #success "Disable inline attachments (just show the icons)" - #defaults write com.apple.mail DisableInlineAttachmentViewing -bool false + #success "Disable inline attachments (just show the icons)" + #defaults write com.apple.mail DisableInlineAttachmentViewing -bool false fi ############################################################################### -# 8. Spotlight +# 8. Spotlight ############################################################################### seek_confirmation "Configure Spotlight?" if is_confirmed; then - # Hide Spotlight tray-icon (and subsequent helper) - #sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search + # Hide Spotlight tray-icon (and subsequent helper) + #sudo chmod 600 /System/Library/CoreServices/Search.bundle/Contents/MacOS/Search - success "Disabled Spotlight indexing for any new mounted volume" - # Use `sudo mdutil -i off "/Volumes/foo"` to stop indexing any volume. - sudo defaults write /.Spotlight-V100/VolumeConfiguration Exclusions -array "/Volumes" + success "Disabled Spotlight indexing for any new mounted volume" + # Use `sudo mdutil -i off "/Volumes/foo"` to stop indexing any volume. + sudo defaults write /.Spotlight-V100/VolumeConfiguration Exclusions -array "/Volumes" - success "Change indexing order and disable some file types" + success "Change indexing order and disable some file types" # Yosemite-specific search results (remove them if your are using OS X 10.9 or older): # MENU_DEFINITION # MENU_CONVERSION @@ -558,100 +652,100 @@ if is_confirmed; then fi ############################################################################### -# 9. Terminal & iTerm 2 +# 9. Terminal & iTerm 2 ############################################################################### seek_confirmation "Configure Terminal.app?" if is_confirmed; then - success "Only use UTF-8 in Terminal.app" - defaults write com.apple.terminal StringEncodings -array 4 + success "Only use UTF-8 in Terminal.app" + defaults write com.apple.terminal StringEncodings -array 4 - # Use a modified version of the Pro theme by default in Terminal.app - open "${HOME}/Dropbox/sharedConfiguration/App Configuration Files/Terminal/solarizedDark.terminal" - sleep 2 # Wait a bit to make sure the theme is loaded - defaults write com.apple.terminal "Default Window Settings" -string "solarizedDark" - defaults write com.apple.terminal "Startup Window Settings" -string "solarizedDark" + # Use a modified version of the Pro theme by default in Terminal.app + open "${HOME}/Dropbox/sharedConfiguration/App Configuration Files/Terminal/solarizedDark.terminal" + sleep 2 # Wait a bit to make sure the theme is loaded + defaults write com.apple.terminal "Default Window Settings" -string "solarizedDark" + defaults write com.apple.terminal "Startup Window Settings" -string "solarizedDark" - # Enable “focus follows mouse” for Terminal.app and all X11 apps - # i.e. hover over a window and start typing in it without clicking first - #defaults write com.apple.terminal FocusFollowsMouse -bool true - #defaults write org.x.X11 wm_ffm -bool true + # Enable “focus follows mouse” for Terminal.app and all X11 apps + # i.e. hover over a window and start typing in it without clicking first + #defaults write com.apple.terminal FocusFollowsMouse -bool true + #defaults write org.x.X11 wm_ffm -bool true fi seek_confirmation "Configure iTerm2?" if is_confirmed; then - success "Installed pretty iTerm colors" - open "${HOME}/Dropbox/sharedConfiguration/App Configuration Files/iTerm/nate.itermcolors" + success "Installed pretty iTerm colors" + open "${HOME}/Dropbox/sharedConfiguration/App Configuration Files/iTerm/nate.itermcolors" - success "Don't display the annoying prompt when quitting iTerm" - defaults write com.googlecode.iterm2 PromptOnQuit -bool false + success "Don't display the annoying prompt when quitting iTerm" + defaults write com.googlecode.iterm2 PromptOnQuit -bool false fi ############################################################################### -# 10. Time Machine +# 10. Time Machine ############################################################################### seek_confirmation "Disable Time Machine?" if is_confirmed; then - success "Prevent Time Machine from prompting to use new hard drives as backup volume" - defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true + success "Prevent Time Machine from prompting to use new hard drives as backup volume" + defaults write com.apple.TimeMachine DoNotOfferNewDisksForBackup -bool true - success "Disable local Time Machine backups" - hash tmutil &> /dev/null && sudo tmutil disablelocal + success "Disable local Time Machine backups" + hash tmutil &> /dev/null && sudo tmutil disablelocal fi ############################################################################### -# 11. Activity Monitor +# 11. Activity Monitor ############################################################################### seek_confirmation "Configure Activity Monitor?" if is_confirmed; then - success "Show the main window when launching Activity Monitor" - defaults write com.apple.ActivityMonitor OpenMainWindow -bool true + success "Show the main window when launching Activity Monitor" + defaults write com.apple.ActivityMonitor OpenMainWindow -bool true - success "Visualize CPU usage in the Activity Monitor Dock icon" - defaults write com.apple.ActivityMonitor IconType -int 5 + success "Visualize CPU usage in the Activity Monitor Dock icon" + defaults write com.apple.ActivityMonitor IconType -int 5 - success "Show all processes in Activity Monitor" - defaults write com.apple.ActivityMonitor ShowCategory -int 0 + success "Show all processes in Activity Monitor" + defaults write com.apple.ActivityMonitor ShowCategory -int 0 - success "Sort Activity Monitor results by CPU usage" - defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage" - defaults write com.apple.ActivityMonitor SortDirection -int 0 + success "Sort Activity Monitor results by CPU usage" + defaults write com.apple.ActivityMonitor SortColumn -string "CPUUsage" + defaults write com.apple.ActivityMonitor SortDirection -int 0 fi ############################################################################### -# 12. Address Book, Dashboard, iCal, TextEdit, Chrome, and Disk Utility +# 12. Address Book, Dashboard, iCal, TextEdit, Chrome, and Disk Utility ############################################################################### seek_confirmation "Configure Google Chrome?" if is_confirmed; then - # Use the system-native print preview dialog - defaults write com.google.Chrome DisablePrintPreview -bool true - defaults write com.google.Chrome.canary DisablePrintPreview -bool true + # Use the system-native print preview dialog + defaults write com.google.Chrome DisablePrintPreview -bool true + defaults write com.google.Chrome.canary DisablePrintPreview -bool true fi seek_confirmation "Configure Contacts, Calendar, TextEdit, Disk Util?" if is_confirmed; then - success "Enable the debug menu in Address Book" - defaults write com.apple.addressbook ABShowDebugMenu -bool true + success "Enable the debug menu in Address Book" + defaults write com.apple.addressbook ABShowDebugMenu -bool true - # Enable Dashboard dev mode (allows keeping widgets on the desktop) - # defaults write com.apple.dashboard devmode -bool true + # Enable Dashboard dev mode (allows keeping widgets on the desktop) + # defaults write com.apple.dashboard devmode -bool true - # Enable the debug menu in iCal (pre-10.8) - # defaults write com.apple.iCal IncludeDebugMenu -bool true + # Enable the debug menu in iCal (pre-10.8) + # defaults write com.apple.iCal IncludeDebugMenu -bool true - success "Use plain text mode for new TextEdit documents" - defaults write com.apple.TextEdit RichText -int 0 - success "Open and save files as UTF-8 in TextEdit" - defaults write com.apple.TextEdit PlainTextEncoding -int 4 - defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4 + success "Use plain text mode for new TextEdit documents" + defaults write com.apple.TextEdit RichText -int 0 + success "Open and save files as UTF-8 in TextEdit" + defaults write com.apple.TextEdit PlainTextEncoding -int 4 + defaults write com.apple.TextEdit PlainTextEncodingForWrite -int 4 - success "Enable the debug menu in Disk Utility" - defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true - defaults write com.apple.DiskUtility advanced-image-options -bool true + success "Enable the debug menu in Disk Utility" + defaults write com.apple.DiskUtility DUDebugMenuEnabled -bool true + defaults write com.apple.DiskUtility advanced-image-options -bool true fi seek_confirmation "Configure Sublime Text 3 in Terminal?" @@ -673,14 +767,14 @@ fi ############################################################################### seek_confirmation "Configure Messages.app?" if is_confirmed; then - success "Disable automatic emoji substitution in Messages.app? (i.e. use plain text smileys) (y/n)" - defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticEmojiSubstitutionEnablediMessage" -bool false + success "Disable automatic emoji substitution in Messages.app? (i.e. use plain text smileys) (y/n)" + defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticEmojiSubstitutionEnablediMessage" -bool false - success "Disable smart quotes in Messages.app? (it's annoying for messages that contain code) (y/n)" + success "Disable smart quotes in Messages.app? (it's annoying for messages that contain code) (y/n)" defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "automaticQuoteSubstitutionEnabled" -bool false - success "Disabled continuous spell checking in Messages.app? (y/n)" - defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "continuousSpellCheckingEnabled" -bool false + success "Disabled continuous spell checking in Messages.app? (y/n)" + defaults write com.apple.messageshelper.MessageController SOInputLineSettings -dict-add "continuousSpellCheckingEnabled" -bool false fi @@ -692,27 +786,153 @@ header "Running SSD Specific OSX Tweaks" seek_confirmation "Confirm that you have an SSD Hard Drive and want to disable sudden motion sensor." if is_confirmed; then - # success "Remove the sleep image file to save disk space" - # sudo rm /Private/var/vm/sleepimage - # success "Create a zero-byte file instead…" - # sudo touch /Private/var/vm/sleepimage - # success "…and make sure it can’t be rewritten" - # sudo chflags uchg /Private/var/vm/sleepimage + # success "Remove the sleep image file to save disk space" + # sudo rm /Private/var/vm/sleepimage + # success "Create a zero-byte file instead…" + # sudo touch /Private/var/vm/sleepimage + # success "…and make sure it can’t be rewritten" + # sudo chflags uchg /Private/var/vm/sleepimage - success "Disable the sudden motion sensor as it’s not useful for SSDs" - sudo pmset -a sms 0 + success "Disable the sudden motion sensor as it’s not useful for SSDs" + sudo pmset -a sms 0 fi ########################## DONE ############################# seek_confirmation "Kill all effected applications?" if is_confirmed; then - for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \ - "Dock" "Finder" "Mail" "Messages" "Safari" "SystemUIServer" \ - "Terminal" "iCal"; do - killall "${app}" > /dev/null 2>&1 - done - success "Apps killed" + for app in "Activity Monitor" "Address Book" "Calendar" "Contacts" "cfprefsd" \ + "Dock" "Finder" "Mail" "Messages" "Safari" "SystemUIServer" \ + "Terminal" "iCal"; do + killall "${app}" > /dev/null 2>&1 + done + success "Apps killed" fi -info "Some of these changes require a logout/restart to take effect." \ No newline at end of file +info "Some of these changes require a logout/restart to take effect." + + +header "Completed ${scriptBasename}" +############## End Script Here ################### +} + +############## Begin Options and Usage ################### + + +# Print usage +usage() { + echo -n "${scriptName} [OPTION]... [FILE]... + +This is my script template. + + Options: + -u, --username Username for script + -p, --password User password + -f, --force Skip all user interaction. Implied 'Yes' to all actions + -q, --quiet Quiet (no output) + -l, --log Print log to file + -s, --strict Exit script with null variables. i.e 'set -o nounset' + -v, --verbose Output more information. (Items echoed to 'verbose') + -d, --debug Runs script in BASH debug mode (set -x) + -h, --help Display this help and exit + --version Output version information and exit +" +} + +# Iterate over options breaking -ab into -a -b when needed and --foo=bar into +# --foo bar +optstring=h +unset options +while (($#)); do + case $1 in + # If option is of type -ab + -[!-]?*) + # Loop over each character starting with the second + for ((i=1; i < ${#1}; i++)); do + c=${1:i:1} + + # Add current char to options + options+=("-$c") + + # If option takes a required argument, and it's not the last char make + # the rest of the string its argument + if [[ $optstring = *"$c:"* && ${1:i+1} ]]; then + options+=("${1:i+1}") + break + fi + done + ;; + + # If option is of type --foo=bar + --?*=*) options+=("${1%%=*}" "${1#*=}") ;; + # add --endopts for -- + --) options+=(--endopts) ;; + # Otherwise, nothing special + *) options+=("$1") ;; + esac + shift +done +set -- "${options[@]}" +unset options + +# Print help if no arguments were passed. +# Uncomment to force arguments when invoking the script +# [[ $# -eq 0 ]] && set -- "--help" + +# Read the options and set stuff +while [[ $1 = -?* ]]; do + case $1 in + -h|--help) usage >&2; safeExit ;; + --version) echo "$(basename $0) $version"; safeExit ;; + -u|--username) shift; username=$1 ;; + -p|--password) shift; password=$1 ;; + -v|--verbose) verbose=1 ;; + -l|--log) printLog=1 ;; + -q|--quiet) quiet=1 ;; + -s|--strict) strict=1;; + -d|--debug) debug=1;; + -f|--force) force=1 ;; + --endopts) shift; break ;; + *) die "invalid option: '$1'." ;; + esac + shift +done + + +############## End Options and Usage ################### + + + + +# ############# ############# ############# +# ## TIME TO RUN THE SCRIPT ## +# ## ## +# ## You shouldn't need to edit anything ## +# ## beneath this line ## +# ## ## +# ############# ############# ############# + +# Trap bad exits with your cleanup function +trap trapCleanup EXIT INT TERM + +# Exit on error. Append ||true if you expect an error. +set -o errexit + +# Run in debug mode, if set +if [ "${debug}" == "1" ]; then + set -x +fi + +# Exit on empty variable +if [ "${strict}" == "1" ]; then + set -o nounset +fi + +# Bash will remember & return the highest exitcode in a chain of pipes. +# This way you can catch the error in case mysqldump fails in `mysqldump |gzip` +set -o pipefail + + +mainScript # Run your script + +safeExit # Exit cleanly \ No newline at end of file diff --git a/setupScripts/ruby.sh b/setupScripts/ruby.sh index 4de78ea..4520c9f 100755 --- a/setupScripts/ruby.sh +++ b/setupScripts/ruby.sh @@ -1,11 +1,107 @@ #!/usr/bin/env bash +# ################################################## +# My Generic BASH script template +# +version="1.0.0" # Sets version variable for this script +# +scriptTemplateVersion="1.1.0" # Version of scriptTemplate.sh that this script is based on +# v.1.1.0 - Added 'debug' option +# +# A Bash script boilerplate. Allows for common functions, logging, tmp +# file creation, CL option passing, and more. +# +# For logging levels use the following functions: +# - header: Prints a script header +# - input: Ask for user input +# - success: Print script success +# - info: Print information to the user +# - notice: Notify the user of something +# - warning: Warn the user of something +# - error: Print a non-fatal error +# - die: A fatal error. Will exit the script +# - debug: Debug information +# - verbose: Debug info only printed when 'verbose' flag is set to 'true'. +# +# HISTORY: +# +# * DATE - v1.0.0 - First Creation +# +# ################################################## + +# Source Scripting Utilities +# ----------------------------------- +# If these can't be found, update the path to the file +# ----------------------------------- if [ -f "../lib/utils.sh" ]; then source "../lib/utils.sh" else - echo "You must have utils.sh to run. Exiting." - exit + echo "Please find the file util.sh and add a reference to it in this script. Exiting." + exit 1 fi +# trapCleanup Function +# ----------------------------------- +# Any actions that should be taken if the script is prematurely +# exited. Always call this function at the top of your script. +# ----------------------------------- +function trapCleanup() { + echo "" + if is_dir "${tmpDir}"; then + rm -r "${tmpDir}" + fi + die "Exit trapped." # Edit this if you like. +} + +# Set Flags +# ----------------------------------- +# Flags which can be overridden by user input. +# Default values are below +# ----------------------------------- +quiet=0 +printLog=0 +verbose=0 +force=0 +strict=0 +debug=0 + + +# Set Local Variables +# ----------------------------------- +# A set of variables used by many scripts +# ----------------------------------- + +# Set Script name and location variables +scriptName=`basename ${0}` # Full name +scriptBasename="$(basename ${scriptName} .sh)" # Strips '.sh' from name +scriptPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +# Set time stamp +now=$(date +"%m-%d-%Y %r") +# Set hostname +thisHost=$(hostname) + +# Create temp directory with three random numbers and the process ID +# in the name. This directory is removed automatically at exit. + tmpDir="/tmp/${scriptName}.$RANDOM.$RANDOM.$RANDOM.$$" + (umask 077 && mkdir "${tmpDir}") || { + die "Could not create temporary directory! Exiting." + } + +# Logging +# ----------------------------------- +# Log is only used when the '-l' flag is set. +# +# To never save a logfile change variable to '/dev/null' +# Save to Desktop use: $HOME/Desktop/${scriptBasename}.log +# Save to standard user log location use: $HOME/Library/Logs/${scriptBasename}.log +# ----------------------------------- +logFile="$HOME/Library/Logs/${scriptBasename}.log" + + +function mainScript() { +############## Begin Script Here ################### +header "Beginning ${scriptBasename}" + # Set Variables LISTINSTALLED="gem list | awk '{print $1}'" @@ -59,5 +155,132 @@ hasHomebrew doInstall #update gems +notice "Updating installed Gems" gem update --system gem update + + +header "Ending ${scriptBasename}" +############## End Script Here ################### +} + +############## Begin Options and Usage ################### + + +# Print usage +usage() { + echo -n "${scriptName} [OPTION]... [FILE]... + +This is my script template. + + Options: + -u, --username Username for script + -p, --password User password + -f, --force Skip all user interaction. Implied 'Yes' to all actions + -q, --quiet Quiet (no output) + -l, --log Print log to file + -s, --strict Exit script with null variables. i.e 'set -o nounset' + -v, --verbose Output more information. (Items echoed to 'verbose') + -d, --debug Runs script in BASH debug mode (set -x) + -h, --help Display this help and exit + --version Output version information and exit +" +} + +# Iterate over options breaking -ab into -a -b when needed and --foo=bar into +# --foo bar +optstring=h +unset options +while (($#)); do + case $1 in + # If option is of type -ab + -[!-]?*) + # Loop over each character starting with the second + for ((i=1; i < ${#1}; i++)); do + c=${1:i:1} + + # Add current char to options + options+=("-$c") + + # If option takes a required argument, and it's not the last char make + # the rest of the string its argument + if [[ $optstring = *"$c:"* && ${1:i+1} ]]; then + options+=("${1:i+1}") + break + fi + done + ;; + + # If option is of type --foo=bar + --?*=*) options+=("${1%%=*}" "${1#*=}") ;; + # add --endopts for -- + --) options+=(--endopts) ;; + # Otherwise, nothing special + *) options+=("$1") ;; + esac + shift +done +set -- "${options[@]}" +unset options + +# Print help if no arguments were passed. +# Uncomment to force arguments when invoking the script +# [[ $# -eq 0 ]] && set -- "--help" + +# Read the options and set stuff +while [[ $1 = -?* ]]; do + case $1 in + -h|--help) usage >&2; safeExit ;; + --version) echo "$(basename $0) $version"; safeExit ;; + -u|--username) shift; username=$1 ;; + -p|--password) shift; password=$1 ;; + -v|--verbose) verbose=1 ;; + -l|--log) printLog=1 ;; + -q|--quiet) quiet=1 ;; + -s|--strict) strict=1;; + -d|--debug) debug=1;; + -f|--force) force=1 ;; + --endopts) shift; break ;; + *) die "invalid option: '$1'." ;; + esac + shift +done + + +############## End Options and Usage ################### + + + + +# ############# ############# ############# +# ## TIME TO RUN THE SCRIPT ## +# ## ## +# ## You shouldn't need to edit anything ## +# ## beneath this line ## +# ## ## +# ############# ############# ############# + +# Trap bad exits with your cleanup function +trap trapCleanup EXIT INT TERM + +# Exit on error. Append ||true if you expect an error. +set -o errexit + +# Run in debug mode, if set +if [ "${debug}" == "1" ]; then + set -x +fi + +# Exit on empty variable +if [ "${strict}" == "1" ]; then + set -o nounset +fi + +# Bash will remember & return the highest exitcode in a chain of pipes. +# This way you can catch the error in case mysqldump fails in `mysqldump |gzip` +set -o pipefail + + +mainScript # Run your script + +safeExit # Exit cleanly \ No newline at end of file diff --git a/setupScripts/ssh.sh b/setupScripts/ssh.sh index 4e0809f..3b99229 100755 --- a/setupScripts/ssh.sh +++ b/setupScripts/ssh.sh @@ -1,37 +1,253 @@ #!/usr/bin/env bash -# This script creates public SSH Keys and sends them to Github +# ################################################## +# My Generic BASH script template +# +version="1.0.0" # Sets version variable for this script +# +scriptTemplateVersion="1.1.0" # Version of scriptTemplate.sh that this script is based on +# v.1.1.0 - Added 'debug' option +# +# A Bash script boilerplate. Allows for common functions, logging, tmp +# file creation, CL option passing, and more. +# +# For logging levels use the following functions: +# - header: Prints a script header +# - input: Ask for user input +# - success: Print script success +# - info: Print information to the user +# - notice: Notify the user of something +# - warning: Warn the user of something +# - error: Print a non-fatal error +# - die: A fatal error. Will exit the script +# - debug: Debug information +# - verbose: Debug info only printed when 'verbose' flag is set to 'true'. +# +# HISTORY: +# +# * DATE - v1.0.0 - First Creation +# +# ################################################## +# Source Scripting Utilities +# ----------------------------------- +# If these can't be found, update the path to the file +# ----------------------------------- if [ -f "../lib/utils.sh" ]; then source "../lib/utils.sh" else - echo "You must have utils.sh to run. Exiting." - exit + echo "Please find the file util.sh and add a reference to it in this script. Exiting." + exit 1 fi +# trapCleanup Function +# ----------------------------------- +# Any actions that should be taken if the script is prematurely +# exited. Always call this function at the top of your script. +# ----------------------------------- +function trapCleanup() { + echo "" + if is_dir "${tmpDir}"; then + rm -r "${tmpDir}" + fi + die "Exit trapped." # Edit this if you like. +} -header "Running : SSH CONFIG" +# Set Flags +# ----------------------------------- +# Flags which can be overridden by user input. +# Default values are below +# ----------------------------------- +quiet=0 +printLog=0 +verbose=0 +force=0 +strict=0 +debug=0 -success "Checking for SSH key in ~/.ssh/id_rsa.pub, generating one if it doesn't exist ..." + +# Set Local Variables +# ----------------------------------- +# A set of variables used by many scripts +# ----------------------------------- + +# Set Script name and location variables +scriptName=`basename ${0}` # Full name +scriptBasename="$(basename ${scriptName} .sh)" # Strips '.sh' from name +scriptPath="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" + +# Set time stamp +now=$(date +"%m-%d-%Y %r") +# Set hostname +thisHost=$(hostname) + +# Create temp directory with three random numbers and the process ID +# in the name. This directory is removed automatically at exit. + tmpDir="/tmp/${scriptName}.$RANDOM.$RANDOM.$RANDOM.$$" + (umask 077 && mkdir "${tmpDir}") || { + die "Could not create temporary directory! Exiting." + } + +# Logging +# ----------------------------------- +# Log is only used when the '-l' flag is set. +# +# To never save a logfile change variable to '/dev/null' +# Save to Desktop use: $HOME/Desktop/${scriptBasename}.log +# Save to standard user log location use: $HOME/Library/Logs/${scriptBasename}.log +# ----------------------------------- +logFile="$HOME/Library/Logs/${scriptBasename}.log" + + +function mainScript() { +############## Begin Script Here ################### + +header "Beginning ${scriptBasename}" + +notice "Checking for SSH key in ~/.ssh/id_rsa.pub, generating one if it doesn't exist." [[ -f ~/.ssh/id_rsa.pub ]] || ssh-keygen -t rsa -success "Copying public key to clipboard." +notice "Copying public key to clipboard." [[ -f ~/.ssh/id_rsa.pub ]] && cat ~/.ssh/id_rsa.pub | pbcopy # Add SSH keys to Github -header "Github integration" +info "Running Github integration" seek_confirmation "Open https://github.com/account/ssh in your browser?" if is_confirmed; then - success "Copying public key to clipboard." + notice "Copying public key to clipboard." - [[ -f ~/.ssh/id_rsa.pub ]] && cat ~/.ssh/id_rsa.pub | pbcopy + [[ -f ~/.ssh/id_rsa.pub ]] && cat ~/.ssh/id_rsa.pub | pbcopy - open https://github.com/account/ssh + open https://github.com/account/ssh - seek_confirmation "Test Github Authentication via ssh?" - if is_confirmed; then - notice "Testing..." - ssh -T git@github.com - fi + seek_confirmation "Test Github Authentication via ssh?" + if is_confirmed; then + notice "Testing..." + ssh -T git@github.com + fi fi -header "Completed : SSH CONFIG" \ No newline at end of file +header "Completed ${scriptBasename}" + +############## End Script Here ################### +} + +############## Begin Options and Usage ################### + + +# Print usage +usage() { + echo -n "${scriptName} [OPTION]... [FILE]... + +This is my script template. + + Options: + -u, --username Username for script + -p, --password User password + -f, --force Skip all user interaction. Implied 'Yes' to all actions + -q, --quiet Quiet (no output) + -l, --log Print log to file + -s, --strict Exit script with null variables. i.e 'set -o nounset' + -v, --verbose Output more information. (Items echoed to 'verbose') + -d, --debug Runs script in BASH debug mode (set -x) + -h, --help Display this help and exit + --version Output version information and exit +" +} + +# Iterate over options breaking -ab into -a -b when needed and --foo=bar into +# --foo bar +optstring=h +unset options +while (($#)); do + case $1 in + # If option is of type -ab + -[!-]?*) + # Loop over each character starting with the second + for ((i=1; i < ${#1}; i++)); do + c=${1:i:1} + + # Add current char to options + options+=("-$c") + + # If option takes a required argument, and it's not the last char make + # the rest of the string its argument + if [[ $optstring = *"$c:"* && ${1:i+1} ]]; then + options+=("${1:i+1}") + break + fi + done + ;; + + # If option is of type --foo=bar + --?*=*) options+=("${1%%=*}" "${1#*=}") ;; + # add --endopts for -- + --) options+=(--endopts) ;; + # Otherwise, nothing special + *) options+=("$1") ;; + esac + shift +done +set -- "${options[@]}" +unset options + +# Print help if no arguments were passed. +# Uncomment to force arguments when invoking the script +# [[ $# -eq 0 ]] && set -- "--help" + +# Read the options and set stuff +while [[ $1 = -?* ]]; do + case $1 in + -h|--help) usage >&2; safeExit ;; + --version) echo "$(basename $0) $version"; safeExit ;; + -u|--username) shift; username=$1 ;; + -p|--password) shift; password=$1 ;; + -v|--verbose) verbose=1 ;; + -l|--log) printLog=1 ;; + -q|--quiet) quiet=1 ;; + -s|--strict) strict=1;; + -d|--debug) debug=1;; + -f|--force) force=1 ;; + --endopts) shift; break ;; + *) die "invalid option: '$1'." ;; + esac + shift +done + + +############## End Options and Usage ################### + + + + +# ############# ############# ############# +# ## TIME TO RUN THE SCRIPT ## +# ## ## +# ## You shouldn't need to edit anything ## +# ## beneath this line ## +# ## ## +# ############# ############# ############# + +# Trap bad exits with your cleanup function +trap trapCleanup EXIT INT TERM + +# Exit on error. Append ||true if you expect an error. +set -o errexit + +# Run in debug mode, if set +if [ "${debug}" == "1" ]; then + set -x +fi + +# Exit on empty variable +if [ "${strict}" == "1" ]; then + set -o nounset +fi + +# Bash will remember & return the highest exitcode in a chain of pipes. +# This way you can catch the error in case mysqldump fails in `mysqldump |gzip` +set -o pipefail + + +mainScript # Run your script + +safeExit # Exit cleanly \ No newline at end of file