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

16 lines
398 B
Bash

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