diff --git a/script/install.d/73-betterdisplay.sh b/script/install.d/73-betterdisplay.sh new file mode 100644 index 0000000..d5c5280 --- /dev/null +++ b/script/install.d/73-betterdisplay.sh @@ -0,0 +1,14 @@ +#!/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