diff --git a/bootstrap.sh b/bootstrap.sh index bf5b6d2..0fa1984 100644 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -1,5 +1,7 @@ #!/bin/bash +MY_NAME="waldek" +MY_EMAIL="waldek@mailbox.org" MY_SHELL="zsh" MY_ZSH_THEME="robbyrussell" MY_BASH_THEME="vscode" @@ -23,3 +25,15 @@ cp ~/.oh-my-bash/templates/bashrc.osh-template ~/.bashrc # modify the theme of oh-my-zsh sed -i "s/font/$MY_BASH_THEME/g" ~/.bashrc +GIT_CONFIG_FILE=~/.gitconfig +touch $GIT_CONFIG_FILE +echo "[user]" >> $GIT_CONFIG_FILE +echo "name = $MY_NAME" >> $GIT_CONFIG_FILE +echo "email = $MY_EMAIL" >> $GIT_CONFIG_FILE + + + + + + +