Files
dotfiles/script/install.d/70-cca.sh
2024-03-07 01:43:25 +00:00

13 lines
320 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install Colour Contrast Analyser (CCA).
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! command -v cca &> /dev/null; then
brew install --cask colour-contrast-analyser
fi
fi