This commit is contained in:
luk
2024-08-03 14:24:45 +08:00
parent 29a2b5d7db
commit 9992fb331a
11 changed files with 62 additions and 49 deletions

30
mac-brew-default-apps.sh Normal file
View File

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