diff options
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -1,9 +1,10 @@ #!/bin/bash # create the symbolic links to the files in this repository - cd `dirname $0` +git submodule init --update + CURRENT_PATH=`pwd` ln -s $CURRENT_PATH/bash/bashrc ~/.bashrc @@ -18,3 +19,5 @@ ln -s $CURRENT_PATH/screenrc ~/.screenrc ln -s $CURRENT_PATH/fonts ~/.fonts fc-cache -vf ~/.fonts + +ln -s $CURRENT_PATH/bin ~/bin |