From 691d331f06df87d684add3e1cdff68816366e138 Mon Sep 17 00:00:00 2001 From: thek4n Date: Thu, 25 Nov 2021 20:54:25 +0300 Subject: [PATCH] remove: ssh_setup.sh --- Makefile | 5 +++++ README.md | 3 +-- git_setup.sh | 2 ++ ssh_setup.sh | 4 ---- 4 files changed, 8 insertions(+), 6 deletions(-) delete mode 100644 ssh_setup.sh 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