1
0
Fork 0

added 4k video downloader, brave, and transmission

This commit is contained in:
Kim, Jimin 2021-08-18 19:28:30 +09:00
parent f576bedec8
commit 6b04c6ef7f

View file

@ -658,7 +658,9 @@ cmd=(dialog --separate-output --checklist "Select Setup Operations to perform" 2
options=( options=(
"remove_unnecessary_packages" "" off "remove_unnecessary_packages" "" off
"4k_video_downloader" "" off
"blender" "" off "blender" "" off
"brave" "" off
"deno" "" off "deno" "" off
"discord" "" off "discord" "" off
"dotnet" "" off "dotnet" "" off
@ -676,6 +678,7 @@ options=(
"osu" "" off "osu" "" off
"piper" "" off "piper" "" off
"rust" "" off "rust" "" off
"transmission" "" off
"unity" "" off "unity" "" off
"vim" "" off "vim" "" off
"virtualbox" "" off "virtualbox" "" off
@ -692,6 +695,10 @@ for choice in $choices; do
case "$choice" in case "$choice" in
"remove_unnecessary_packages") "remove_unnecessary_packages")
remove_essentials;; remove_essentials;;
"4k_video_downloader")
setup_4kvideodownloader;;
"brave")
setup_brave;;
"blender") "blender")
setup_blender;; setup_blender;;
"deno") "deno")
@ -726,6 +733,8 @@ for choice in $choices; do
setup_piper;; setup_piper;;
"rust") "rust")
setup_rust;; setup_rust;;
"transmission")
setup_transmission;;
"unity") "unity")
setup_unity;; setup_unity;;
"vim") "vim")