From 9a5eddc647fb2fd388138f9bdba62e4225665079 Mon Sep 17 00:00:00 2001 From: Michael Marquez Date: Wed, 21 Jun 2023 13:35:28 -0400 Subject: [PATCH] Add Fantastical Install --- 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 0e8095b..1df742a 100644 --- a/mac_os_setup.sh +++ b/mac_os_setup.sh @@ -109,6 +109,16 @@ function install_1password_cli() { fi } +function install_fantastical() { + if [[ $(find /Applications -name "Fantastical.app" | grep .) ]] + then + echo "Fantastical already installed..." + else + echo "Installing Fantastical..." + brew install --cask fantastical + fi +} + ############################# # MAIN # ############################# @@ -125,4 +135,5 @@ install_hackfont install_docker install_1password install_brave -install_1password_cli \ No newline at end of file +install_1password_cli +install_fantastical \ No newline at end of file