Files
sysconfig/mac_brew_apps.sh
luk 9742f6dab2 refactor: 脚本及配置文件命名统一用 _ 分隔
将 .sh/.bat 脚本与 .js/.plist/.Dockerfile 等文件中以 - 分隔的文件名
改为 _ 分隔,dcloud-renew 目录改为 dcloud、script_nuance 目录改为
nuance,并同步更新脚本内部引用与 README 路径。

Co-Authored-By: AtomCode (deepseek-v4-flash) <noreply@atomgit.com>
2026-08-25 15:11:50 +08:00

31 lines
943 B
Bash
Executable File

echo "::*** Install formulaes and casks, enter [y] for Yes, [anything else] for No:"
echo
formulaeList=(aichat cloudflared jq openssl pandoc rclone readline speedtest-cli hudochenkov/sshpass/sshpass v2ray v2raya/v2raya/v2raya yt-dlp)
for APP in "${formulaeList[@]}"
do
echo "--- brew install $APP"
read -p "***:: " YN
if [ "$YN" = 'y' ]
then
brew install $APP
fi
echo
echo "*************************************************"
echo
done
caskList=(appcleaner avidemux baidunetdisk cloudflare-warp cursor discord douyin drawio emacs futubull mysql-client iina iterm2 lx-music miniconda obs poe qq seafile-client shotcut spacelauncher sqlitestudio telegram-desktop termius thunder warp wechat xquartz)
for APP in "${caskList[@]}"
do
echo "--- brew install $APP --cask"
read -p "***:: " YN
if [ "$YN" = 'y' ]
then
brew install $APP
fi
echo
echo "*************************************************"
echo
done