From 1e58ea6809fdb3acec8e6487792ccba5933dc744 Mon Sep 17 00:00:00 2001 From: Michael Marquez Date: Fri, 23 Jun 2023 12:21:45 -0400 Subject: [PATCH] Add Spotify to Install List --- mac_os_setup.sh | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) 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