Add .gitignore

This commit is contained in:
Santiago Lo Coco 2022-02-08 13:41:46 -03:00
parent e87cee1de6
commit cbdab98cff
2 changed files with 26 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
dotfiles/.gitconfig
dotfiles/.gitconfig-work

24
test.sh Normal file
View File

@ -0,0 +1,24 @@
source sadedot/scripts/common.sh
setDialogBox "dialog"
msg="\nEnter an absolute folder path where you would like to use the work account."
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
checkCancel "You must enter a path." && return
gitWorkPath=$(echo "$gitWorkPath" | envsubst)
mkdir -p "$gitWorkPath"
while [[ ! -d "$gitWorkPath" ]]; do
msg="\nPath isn't valid. Please try again."
gitWorkPath=$(displayDialogBox --inputbox "$msg" VALUES 3>&1 1>&2 2>&3)
checkCancel "You must enter a path." && return
gitWorkPath=$(echo "$gitWorkPath" | envsubst)
mkdir -p "$gitWorkPath"
done
gitWorkName=$(displayDialogBox --inputbox "\nEnter a name." VALUES 3>&1 1>&2 2>&3)
checkCancel "You must enter a name." && return
gitWorkMail=$(displayDialogBox --inputbox "\nEnter an e-mail." VALUES 3>&1 1>&2 2>&3)
checkCancel "You must enter an e-mail." && return
msg="\nPlease confirm that the data you entered is correct:\n\n -"
msg="${msg} Name: ${gitWorkName}\n - E-mail: ${gitWorkMail}\n - Path: ${gitWorkPath}"
displayDialogBox --yesno "$msg" && break