Files
dotfiles/script/install.d/75-arc.sh

17 lines
373 B
Bash

#!/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
else
echo "Skipping: Not macOS"
fi