From d68193ddb2b32f93b7c9f5581f7c71c822e5e554 Mon Sep 17 00:00:00 2001 From: David Ibia Date: Sun, 11 Aug 2024 14:03:52 +0100 Subject: [PATCH] chore(setup-mac.sh): add installation script for Aerospace tool using Homebrew to manage dependencies and streamline setup process --- setup-mac.sh | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/setup-mac.sh b/setup-mac.sh index 114e986..6314788 100755 --- a/setup-mac.sh +++ b/setup-mac.sh @@ -190,3 +190,14 @@ else echo "Installing sdkman..." curl -s "https://get.sdkman.io" | bash fi + + +# Install Aerospace + +if command -v aerospace &> /dev/null; then + echo "aerospace is installed." +else + echo "aerospace is not installed." + echo "Installing aerospace..." + brew install --cask nikitabobko/tap/aerospace +fi