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

13 lines
281 B
Bash

#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install iTerm2.
#
if [[ "$OSTYPE" == "darwin"* ]]; then
if ! command -v iterm2 &> /dev/null; then
brew install --cask iterm2
fi
fi