Use plain text if user don't have whiptail or dialog

This commit is contained in:
Santiago Lo Coco 2022-01-19 18:39:46 -03:00
parent 3f784c5d9d
commit fb219b06f0
1 changed files with 8 additions and 6 deletions

View File

@ -5,6 +5,7 @@ usage() {
usage: ${0##*/} [command] usage: ${0##*/} [command]
-h | --help Print this help message. -h | --help Print this help message.
-d | --dialog Use dialog. -d | --dialog Use dialog.
-t | --text Print plain text to stdout (without dialog or whiptail).
-l | --log Log to sadedot.log file. -l | --log Log to sadedot.log file.
-p | --packages Run scripts/install.sh at the end of this script. -p | --packages Run scripts/install.sh at the end of this script.
EOF EOF
@ -18,10 +19,12 @@ checkParameters() {
exit 0 exit 0
;; ;;
-d | --dialog) -d | --dialog)
echo "dialog"
checkForDependencies "dialog" checkForDependencies "dialog"
setDialogBox "dialog" setDialogBox "dialog"
;; ;;
-t | --text)
setDialogBox "plain"
;;
-l | --log) -l | --log)
checkForDependencies "libnewt" checkForDependencies "libnewt"
setDialogBox "whiptail" setDialogBox "whiptail"
@ -97,16 +100,15 @@ checkForDependencies() {
return return
fi fi
echo "You must install ${1}." >&2 setDialogBox "plain"
exit 1
fi fi
} }
startRice() { startRice() {
displayDialogBox --title "sadedot" --msgbox "Hi! This script will auto install my dotfiles." displayDialogBox --title "sadedot" --msgbox "Hi! This script will auto install my dotfiles."
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
displayDialogBox --title "sadedot" --msgbox "All done! Enjoy..." displayDialogBox --title "sadedot" --msgbox "All done! Enjoy..."
} }