feat: remove arc/appcleaner

This commit is contained in:
2025-09-25 21:22:39 +01:00
parent 136d80bd71
commit 72c1d5aade
2 changed files with 0 additions and 33 deletions

View File

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

View File

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