Add Spotify to Install List

This commit is contained in:
Michael Marquez
2023-06-23 12:21:45 -04:00
parent 9a5eddc647
commit 1e58ea6809

View File

@@ -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
install_fantastical
install_spotify