diff options
author | Karel Kočí <cynerd@email.cz> | 2018-04-04 09:55:49 +0200 |
---|---|---|
committer | Karel Kočí <cynerd@email.cz> | 2018-04-04 09:57:37 +0200 |
commit | 7ad63ac537482aaa43eae2de19ef83d332beacc2 (patch) | |
tree | 80bf10fc01d13a1e2ed7756cee75de103f80cf16 /install | |
parent | b5d63999c82eb89c0bd671c2ae04b936b6ec714d (diff) | |
parent | e6e04d7c587b17c23a90f3aa37ab5bdeec8415bb (diff) | |
download | myconfigs-7ad63ac537482aaa43eae2de19ef83d332beacc2.tar.gz myconfigs-7ad63ac537482aaa43eae2de19ef83d332beacc2.tar.bz2 myconfigs-7ad63ac537482aaa43eae2de19ef83d332beacc2.zip |
Merge branch 'master' into server
Diffstat (limited to 'install')
-rwxr-xr-x | install | 14 |
1 files changed, 4 insertions, 10 deletions
@@ -12,14 +12,10 @@ git submodule update --init --recursive || (echo "Submodule update failed!"; exi ################################################################################# -if ask "Install Bashrc"; then - inst bashrc ~/.bashrc - inst shellrc ~/.shellrc -fi - -if ask "Install zshrc"; then - inst zshrc ~/.zshrc - inst shellrc ~/.shellrc +# TODO on hosts without shellrc we might want some thin shellrc to be installed +if ask "Install shell profile"; then + inst profile ~/.profile + inst zprofile ~/.zprofile fi if ask "Install GIT configuration"; then @@ -29,8 +25,6 @@ fi if ask "Install configurations for various utility tools"; then inst screenrc ~/.screenrc - mkdir -p ~/.config/htop - inst config/htop/htoprc ~/.config/htop/htoprc fi if ask "Install vim scripts"; then |