Update startRice()

This commit is contained in:
Santiago Lo Coco 2022-02-07 23:49:36 -03:00
parent fd2a93e746
commit 43d5030771
1 changed files with 6 additions and 3 deletions

View File

@ -126,9 +126,12 @@ runUserScripts() {
}
startRice() {
msg="\nThis script will configure gitconfig, install the dotfiles, and then run the scripts of"
msg="${msg} the '$(basename $PWD)/scripts' folder. Would you like to continue?"
displayDialogBox --title "sadedot" --yesno "$msg"
msg="\nThis script will configure gitconfig, install the dotfiles"
if [[ -n $userScriptsFlag && $userScriptsFlag = true ]]; then
msg="${msg}, and then run the scripts of the '$(basename $PWD)/scripts' folder"
fi
msg="${msg}. Would you like to continue?"
displayDialogBox --title "sadedot" --yesno "$msg" || return
displayDialogBox --infobox "\nFirst, the sadedot submodule will be updated."
source scripts/update.sh | debug
getGitconfigData