Add Wispr Flow install script for macOS

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-03-18 10:48:52 +00:00
parent f331bf8122
commit 4ec1ea9249

View File

@@ -0,0 +1,16 @@
#!/usr/bin/env bash
# -----------------------------------------------------------------------------
# Description:
# (macOS only) Install Wispr Flow.
#
# macOS only
[[ "$DOTS_OS" != "macos" ]] && { log_skip "Not macOS"; return 0; }
if ! echo "$BREW_CASKS" | grep -q "^wispr-flow$"; then
brew install --cask wispr-flow
else
echo "Wispr Flow is already installed."
fi
log_pass "Wispr Flow installed"