Update bootstrap.sh and common.sh
This commit is contained in:
parent
3853a6e228
commit
24cbefbcc7
|
@ -105,7 +105,10 @@ checkForDependencies() {
|
||||||
}
|
}
|
||||||
|
|
||||||
startRice() {
|
startRice() {
|
||||||
|
selectedOption=$(displayDialogBox --menu "File already exists: $(basename "$1"), what would you like to do?" VALUES 0 1 "Skip" 2 "Skip all" 3 "Overwrite" 4 "Overwrite all" 5 "Backup" 6 "Backup all" 3>&1 1>&2 2>&3)
|
||||||
|
gitWorkName=$(displayDialogBox --inputbox "Enter a name." VALUES 3>&1 1>&2 2>&3)
|
||||||
displayDialogBox --title "sadedot" --msgbox "Hi! This script will auto install my dotfiles."
|
displayDialogBox --title "sadedot" --msgbox "Hi! This script will auto install my dotfiles."
|
||||||
|
displayDialogBox --yesno "Would you like to set up gitconfig?" || return
|
||||||
# getGitconfigData
|
# getGitconfigData
|
||||||
# source scripts/linkFiles.sh
|
# source scripts/linkFiles.sh
|
||||||
# [[ -n $installPackages && $installPackages = true ]] && source scripts/install.sh
|
# [[ -n $installPackages && $installPackages = true ]] && source scripts/install.sh
|
||||||
|
|
|
@ -91,44 +91,67 @@ useWhiptail() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
printLine() {
|
||||||
|
printf '\n\n%s' "----------------------------------------"
|
||||||
|
}
|
||||||
|
|
||||||
usePlainText() {
|
usePlainText() {
|
||||||
clear
|
clear
|
||||||
inputbox=false; infobox=false; passwordbox=false; yesno=false
|
inputbox=false; infobox=false; msgbox=false; passwordbox=false; yesno=false
|
||||||
for item in "$@"; do
|
for item in "$@"; do
|
||||||
case $item in
|
case $item in
|
||||||
--title) shift && shift ;;
|
--title) shift && shift ;;
|
||||||
--inputbox) inputbox=true ;;
|
--inputbox) inputbox=true ;;
|
||||||
--infobox) infobox=true ;;
|
--infobox) infobox=true ;;
|
||||||
|
--msgbox) msgbox=true ;;
|
||||||
--passwordbox) passwordbox=true ;;
|
--passwordbox) passwordbox=true ;;
|
||||||
--yesno) yesno=true ;;
|
--yesno) yesno=true ;;
|
||||||
esac
|
esac
|
||||||
done
|
done
|
||||||
printf "$2\n"
|
printf "$2\n"
|
||||||
if [ $inputbox = true ]; then
|
if [ $inputbox = true ]; then
|
||||||
|
printLine && printf "\n"
|
||||||
read -r readVar
|
read -r readVar
|
||||||
printf "$readVar" 1>&2
|
printf "$readVar" 1>&2
|
||||||
elif [ $passwordbox = true ]; then
|
elif [ $passwordbox = true ]; then
|
||||||
|
printLine && printf "\n"
|
||||||
read -r -s readVar
|
read -r -s readVar
|
||||||
printf "$readVar" 1>&2
|
printf "$readVar" 1>&2
|
||||||
elif [ $yesno = true ]; then
|
elif [ $yesno = true ]; then
|
||||||
|
printLine
|
||||||
printf '\n%s' "[y/n] "
|
printf '\n%s' "[y/n] "
|
||||||
read -n 1 -r -s readVar
|
read -n 1 -r -s readVar
|
||||||
return $([[ "$readVar" =~ ^[Yy]$ ]])
|
return $([[ "$readVar" =~ ^[Yy]$ ]])
|
||||||
|
elif [ $msgbox = true ]; then
|
||||||
|
printLine
|
||||||
|
printf '\n%s' "Press a key to continue... "
|
||||||
|
read -n 1 -r -s
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
usePlainTextMenu() {
|
usePlainTextMenu() {
|
||||||
clear
|
clear
|
||||||
menuOptions=(); shift
|
shift; printf "$1\n"; shift; shift
|
||||||
printf "$1\n"
|
|
||||||
shift; shift
|
|
||||||
local i=1; for item in "$@"; do
|
local i=1; for item in "$@"; do
|
||||||
echo "$item" | grep -qE '[0-9]+' && continue
|
echo "$item" | grep -qE '[0-9]+' && continue
|
||||||
printf '%s\n' "$i) $item"
|
printf '%s\n' "$i) $item"
|
||||||
((i++))
|
((i++))
|
||||||
done
|
done
|
||||||
|
printLine
|
||||||
printf '\n%s' "[1..$((i-1))] "
|
printf '\n%s' "[1..$((i-1))] "
|
||||||
read -n 1 -r -s readVar
|
read -n ${#i} -r readVar
|
||||||
|
# if [[ $readVar -le 0 || $readVar -ge $i ]]; then
|
||||||
|
# echo "hola"
|
||||||
|
# fi
|
||||||
|
# echo "h" $(echo "$readVar" | grep -vqE '[0-9]+')
|
||||||
|
# echo "i" $([[ $readVar -le 0 || $readVar -ge $i ]])
|
||||||
|
while echo "$readVar" | grep -vqE '[0-9]+' || [[ $readVar -le 0 || $readVar -ge $i ]]; do
|
||||||
|
printf "\033[A"
|
||||||
|
printf '\n%s' "You need to choose a number between 1 and $((i-1))"
|
||||||
|
printf '\n%s' "[1..$((i-1))] "
|
||||||
|
read -n 1 -r -s readVar
|
||||||
|
done
|
||||||
|
printf "\n"
|
||||||
printf "$readVar" 1>&2
|
printf "$readVar" 1>&2
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue