17 lines
411 B
Bash
17 lines
411 B
Bash
#!/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"
|