feat: install meetingbar

This commit is contained in:
2024-06-08 15:11:40 +01:00
parent e1fb57250c
commit 7d74d07873

View File

@@ -0,0 +1,14 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (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
fi