#!/usr/bin/env bash macos_update_path () { new_path=$1 [ -d $new_path ] && export PATH=$new_path:$PATH } macos_update_path /usr/local/opt/openjdk/bin macos_update_path /usr/local/opt/ruby/bin macos_update_path /usr/local/opt/llvm/bin export BROWSER='open -a safari' [ -d /Applications/Firefox.app ] && export BROWSER='open -a firefox' alias bug='brew upgrade --greedy' if [[ $(spctl --status) == 'assessments enabled' ]]; then echo 'Software installment is limited again. Password is required to remove the limit.' sudo spctl --master-disable fi