From 72c1d5aadeb3b1d2c57c6e23d7138948afc4bb86 Mon Sep 17 00:00:00 2001 From: Andrejus Date: Thu, 25 Sep 2025 21:22:39 +0100 Subject: [PATCH] feat: remove arc/appcleaner --- script/install.d/75-arc.sh | 16 ---------------- script/install.d/76-appcleaner.sh | 17 ----------------- 2 files changed, 33 deletions(-) delete mode 100644 script/install.d/75-arc.sh delete mode 100644 script/install.d/76-appcleaner.sh 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