diff --git a/mac_os_setup.sh b/mac_os_setup.sh index 1df742a..82c0ac8 100644 --- a/mac_os_setup.sh +++ b/mac_os_setup.sh @@ -119,6 +119,16 @@ function install_fantastical() { fi } +function install_spotify() { + if [[ $(find /Applications -name "Spotify.app" | grep .) ]] + then + echo "Spotify already installed..." + else + echo "Installing Spotify..." + brew install --cask spotify + fi +} + ############################# # MAIN # ############################# @@ -136,4 +146,5 @@ install_docker install_1password install_brave install_1password_cli -install_fantastical \ No newline at end of file +install_fantastical +install_spotify \ No newline at end of file