Files
dotfiles/script/install.d/71-rectangle.sh
2025-12-23 20:53:55 +02:00

16 lines
382 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install Rectangle.
#
# macOS only
[[ "$DOTS_OS" != "macos" ]] && { log_warn "Skipping: Not macOS"; return 0; }
if ! brew list --cask rectangle &> /dev/null; then
brew install --cask rectangle
else
echo "Rectangle is already installed."
fi