perf: install env checks

This commit is contained in:
2025-12-23 20:53:55 +02:00
parent a286817ce3
commit 891ae505f8
30 changed files with 492 additions and 490 deletions

View File

@@ -5,12 +5,11 @@
# (macOS only) Install MeetingBar.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! brew list --cask meetingbar &> /dev/null; then
brew install --cask meetingbar
else
echo "MeetingBar is already installed."
fi
# macOS only
[[ "$DOTS_OS" != "macos" ]] && { log_warn "Skipping: Not macOS"; return 0; }
if ! brew list --cask meetingbar &> /dev/null; then
brew install --cask meetingbar
else
log_warn "Skipping: Not macOS"
echo "MeetingBar is already installed."
fi