chore(setup-mac.sh): add installation script for Aerospace tool using Homebrew to manage dependencies and streamline setup process

This commit is contained in:
David Ibia
2024-08-11 14:03:52 +01:00
parent 8f123e8019
commit d68193ddb2

View File

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