customsetup removed from setup.sh

This commit is contained in:
victor 2020-12-29 21:45:54 +03:30
parent dd1f5dd0d3
commit c0dfd89ae5
1 changed files with 11 additions and 17 deletions

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
function main(){ function main() {
#print banner #print banner
banner banner
@ -17,33 +17,27 @@ function main(){
run_script "scripts/PhotoshopSetup.sh" "PhotoshopSetup.sh" run_script "scripts/PhotoshopSetup.sh" "PhotoshopSetup.sh"
;; ;;
2) 2)
echo "run photoshop CC Installation..."
echo -n "using custom script for component installation..."
run_script "scripts/PhotoshopSetupCustom.sh" "PhotoshopSetupCustom.sh"
;;
3)
echo -n "run adobe camera Raw installer" echo -n "run adobe camera Raw installer"
run_script "scripts/cameraRawInstaller.sh" "cameraRawInstaller.sh" run_script "scripts/cameraRawInstaller.sh" "cameraRawInstaller.sh"
;; ;;
4) 3)
echo "run winecfg..." echo "run winecfg..."
echo -n "open virtualdrive configuration..." echo -n "open virtualdrive configuration..."
run_script "scripts/winecfg.sh" "winecfg.sh" run_script "scripts/winecfg.sh" "winecfg.sh"
;; ;;
5) 4)
echo -n "uninstall photoshop CC ..." echo -n "uninstall photoshop CC ..."
run_script "scripts/uninstaller.sh" "uninstaller.sh" run_script "scripts/uninstaller.sh" "uninstaller.sh"
;; ;;
6) 5)
echo "exit setup..." echo "exit setup..."
exitScript exitScript
;; ;;
esac esac
} }
#argumaents 1=script_path 2=script_name #argumaents 1=script_path 2=script_name
function run_script(){ function run_script() {
local script_path=$1 local script_path=$1
local script_name=$2 local script_name=$2
@ -58,7 +52,7 @@ function run_script(){
unset script_path unset script_path
} }
function wait_second(){ function wait_second() {
for (( i=0 ; i<$1 ; i++ ));do for (( i=0 ; i<$1 ; i++ ));do
echo -n "." echo -n "."
sleep 1 sleep 1
@ -66,7 +60,7 @@ function wait_second(){
echo "" echo ""
} }
function read_input(){ function read_input() {
while true ;do while true ;do
read -p "[choose an option]$ " choose read -p "[choose an option]$ " choose
if [[ "$choose" =~ (^[1-6]$) ]];then if [[ "$choose" =~ (^[1-6]$) ]];then
@ -78,11 +72,11 @@ function read_input(){
return $choose return $choose
} }
function exitScript(){ function exitScript() {
echo "Good Bye :)" echo "Good Bye :)"
} }
function banner(){ function banner() {
local banner_path="$PWD/images/banner" local banner_path="$PWD/images/banner"
if [ -f $banner_path ];then if [ -f $banner_path ];then
clear && echo "" clear && echo ""
@ -94,12 +88,12 @@ function banner(){
unset banner_path unset banner_path
} }
function error(){ function error() {
echo -e "\033[1;31merror:\e[0m $@" echo -e "\033[1;31merror:\e[0m $@"
exit 1 exit 1
} }
function warning(){ function warning() {
echo -e "\033[1;33mWarning:\e[0m $@" echo -e "\033[1;33mWarning:\e[0m $@"
} }