From 3786cd45f414dca779e991539076c4288f009d55 Mon Sep 17 00:00:00 2001 From: staticsafe Date: Thu, 29 Mar 2012 13:19:13 -0400 Subject: [PATCH] reverting to using ln manually --- envsetup.sh | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/envsetup.sh b/envsetup.sh index fd8fbac..aa1a8ff 100644 --- a/envsetup.sh +++ b/envsetup.sh @@ -46,14 +46,19 @@ changeshell() { printf '%s\n' "Your default shell is already zsh, continuing." else chsh -s $(which zsh) + printf '%s\n' "Default shell changed to zsh, logout and login to see changes" fi } linkfiles() { - find ~/dev/dotfiles -type f -name ".*" -execdir ln -s -f {} - --target-directory=$HOME \; - ln -s ~/dev/dotfiles/.zsh $HOME - ln -s ~/dev/dotfiles/.vim $HOME + #find ~/dev/dotfiles -type f -name ".*" -execdir ln -s -f {} + # --target-directory=$HOME \; # removed until I can figure out the issue + ln -sf ~/dev/dotfiles/.zshrc $HOME/ + ln -sf ~/dev/dotfiles/.vimrc $HOME/ + ln -sf ~/dev/dotfiles/.tmux.conf $HOME/ + ln -sf ~/dev/dotfiles/.conkyrc $HOME/ + ln -sf ~/dev/dotfiles/.zsh $HOME/ + ln -sf ~/dev/dotfiles/.vim $HOME/ touch ~/.zhistory }