This commit is contained in:
Luk
2024-06-24 09:48:20 +08:00
parent 6f5a2fb6d8
commit 891b4a1a6e
5 changed files with 80 additions and 4 deletions

24
mac-homebrew-setup.sh Normal file
View File

@@ -0,0 +1,24 @@
echo "=== Install formulaes and casks, enter [y] for Yes, [anything else] for No:"
echo
formulaeList=(jq openssl pandoc speedtest-cli sqlite yt-dlp)
for APP in "${formulaeList[@]}"
do
echo "--- brew install $APP"
read -p ">>> " YN
if [ "$YN" = 'y' ]
then
echo brew install $APP
fi
done
caskList=(appcleaner avidemux baidunetdisk cloudflare-warp cursor douyin drawio emacs futubull iina lx-music miniconda obs poe qq seafile-client shotcut spacelauncher sqlitestudio telegram-desktop telegram-lite termius thunder warp wechat)
for APP in "${formulaeList[@]}"
do
echo "--- brew install $APP"
read -p ">>> " YN
if [ "$YN" = 'y' ]
then
echo brew install $APP
fi
done