feat: install betterdisplay

This commit is contained in:
2024-06-08 15:13:59 +01:00
parent e2555d931c
commit 67a10c0dd0

View File

@@ -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