feat: Install Arc

This commit is contained in:
2024-06-27 12:41:49 +01:00
parent c7e6d9d741
commit 2e5eb07890

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install Arc Browser.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! brew list arc &> /dev/null; then
brew install --cask arc
else
echo "Arc Browser is already installed."
fi
fi