diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..acf0255 --- /dev/null +++ b/install.sh @@ -0,0 +1,17 @@ +#! /bin/bash +mkdir -p $HOME/.ssh + + +for link in bashrc gitconfig screenrc Xresources Xdefaults Xmodmap themes fonts aliases do; + + + rm -rf $HOME/.$link + + + ln -s $(pwd)/$link $HOME/.$link + + + +; done +ln -s $(pwd)/sshconfig $HOME/.ssh/config +cat $(pwd)/pubkeys/* > ~/.ssh/authorized_keys \ No newline at end of file