diff --git a/Makefile b/Makefile index 90264c9..4b226b3 100644 --- a/Makefile +++ b/Makefile @@ -6,6 +6,11 @@ install: ln -s $(PWD)/.bashrc ~ ln -s $(PWD)/.zshrc ~ ln -s $(PWD)/.vimrc ~ + . ~/.bashrc clean: rm -rf .ssh doc etc functions img .gitignore README.md setup.sh ssh_setup.sh git_setup.sh .git + +ssh: + touch ~/.ssh/config + cat .ssh/config >> ~/.ssh/config diff --git a/README.md b/README.md index d6db6aa..493712b 100644 --- a/README.md +++ b/README.md @@ -31,8 +31,7 @@ Bash config files ```bash git clone https://github.com/TheK4n/dotfiles chmod u+x dotfiles/setup.sh -dotfiles/setup.sh -. ~/.bashrc +make ``` diff --git a/git_setup.sh b/git_setup.sh index 2da6d5f..abe81ad 100644 --- a/git_setup.sh +++ b/git_setup.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + echo "Type in your first and last name (no accent or special characters - e.g. 'รง'): " read -r full_name diff --git a/ssh_setup.sh b/ssh_setup.sh deleted file mode 100644 index cc70ec2..0000000 --- a/ssh_setup.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/usr/bin/env bash - -touch ~/.ssh/config -cat .ssh/config >> ~/.ssh/config