diff --git a/script/install.d/75-arc.sh b/script/install.d/75-arc.sh deleted file mode 100644 index 3f9c9b1..0000000 --- a/script/install.d/75-arc.sh +++ /dev/null @@ -1,16 +0,0 @@ -#!/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 - log_warn "Skipping: Not macOS" -fi diff --git a/script/install.d/76-appcleaner.sh b/script/install.d/76-appcleaner.sh deleted file mode 100644 index f6a2fd2..0000000 --- a/script/install.d/76-appcleaner.sh +++ /dev/null @@ -1,17 +0,0 @@ -#!/usr/bin/env bash - -# ----------------------------------------------------------------------------- -# Description: -# (macOS only) Install AppCleaner. -# - -if [[ "$OSTYPE" == "darwin"* ]]; then - if ! brew list --cask appcleaner &> /dev/null; then - brew install --cask appcleaner - echo "AppCleaner has been installed." - else - echo "AppCleaner is already installed." - fi -else - log_warn "Skipping: Not macOS" -fi