This commit is contained in:
Luk
2024-09-14 12:13:01 +08:00
parent 9992fb331a
commit c23af842fd
6 changed files with 177 additions and 12 deletions

View File

@@ -1,7 +1,7 @@
echo "=== Install formulaes and casks, enter [y] for Yes, [anything else] for No:"
echo
formulaeList=(jq openssl pandoc speedtest-cli yt-dlp)
formulaeList=(jq openssl pandoc rclone speedtest-cli yt-dlp)
for APP in "${formulaeList[@]}"
do
echo "--- brew install $APP"
@@ -15,10 +15,10 @@ do
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)
caskList=(appcleaner avidemux baidunetdisk cloudflare-warp cursor discord 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"
echo "--- brew install $APP --cask"
read -p ">>> " YN
if [ "$YN" = 'y' ]
then