Files
dotfiles/script/install.d/73-betterdisplay.sh
2024-06-08 15:13:59 +01:00

15 lines
368 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install BetterDisplay.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! brew list --cask betterdisplay &> /dev/null; then
brew install --cask betterdisplay
else
echo "BetterDisplay is already installed."
fi
fi