diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-08-07 19:22:41 +0200 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-08-07 19:22:41 +0200 |
commit | 6694e0c631cde4e64a506301e9aaf41b214fb59d (patch) | |
tree | ddf7ab487ccfeaf0f481a28880a8ae162cd1e248 | |
parent | 984ee6de4bbbffecc4a6dc87922c36f700c6992e (diff) | |
download | bin-6694e0c631cde4e64a506301e9aaf41b214fb59d.tar.gz bin-6694e0c631cde4e64a506301e9aaf41b214fb59d.tar.xz |
init_new_user.sh: adjust htoprc path
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | init_new_user.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/init_new_user.sh b/init_new_user.sh index 57bb72d..a2333be 100755 --- a/init_new_user.sh +++ b/init_new_user.sh @@ -19,7 +19,9 @@ clone_repo() { clone_repo git://git.server-speed.net/users/flo/bin bin clone_repo git://git.server-speed.net/users/flo/dotfiles git/dotfiles -for i in .zshrc .vimrc .screenrc .screenrc-2 .zprofile .htoprc .dircolors .vim .gitconfig .gitignore .bashrc .zshenv; do +mkdir -p .config/htop + +for i in .zshrc .vimrc .screenrc .screenrc-2 .zprofile .config/htop/htoprc .dircolors .vim .gitconfig .gitignore .bashrc .zshenv; do ln -sf git/dotfiles/$i $i done |