feat: rectangle app, mac install bump

This commit is contained in:
2024-03-08 12:07:09 +00:00
parent 3e607a4b1f
commit be1ab0be7e
2 changed files with 16 additions and 2 deletions

View File

@@ -17,8 +17,8 @@ if command -v apt-get &> /dev/null; then
sudo apt-get install -qq "${apt_packages[@]}"
unset apt_packages
apt --version
else
echo "Skipping: apt-get not found"
fi
apt --version

View File

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