From 58840e41be095d0a36df491f3d03091788bc369a Mon Sep 17 00:00:00 2001 From: flipsidecreations Date: Mon, 26 Mar 2018 09:28:57 -0400 Subject: [PATCH] made installer & updated instructions --- README.md | 6 +----- install.sh | 14 ++++++++++++++ 2 files changed, 15 insertions(+), 5 deletions(-) create mode 100755 install.sh diff --git a/README.md b/README.md index 07085f0..a188507 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,6 @@ cd git clone https://github.com/flipsidecreations/dotfiles.git -(make sure these files do not exist first) -ln -s dotfiles/.bashrc ~/ -ln -s dotfiles/.vimrc ~/ -ln -s dotfiles/.screenrc ~/ -ln -s dotfiles/.tmux.conf ~/ +then run install.sh ``` diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..e18db60 --- /dev/null +++ b/install.sh @@ -0,0 +1,14 @@ +#!/bin/bash + +rm ~/.bashrc +rm ~/.bash_aliases +rm ~/.bash_exports +rm ~/.bash_wrappers +rm ~/.vimrc +rm ~/.screenrc +rm ~/.tmux.conf +ln -s dotfiles/.bashrc ~/ +ln -s dotfiles/.vimrc ~/ +ln -s dotfiles/.screenrc ~/ +ln -s dotfiles/.tmux.conf ~/ +