From 4f0f13ce72698c329cc5d4ccfecc3f455da97064 Mon Sep 17 00:00:00 2001 From: "luk.lu" Date: Fri, 5 Nov 2021 09:59:07 +0800 Subject: [PATCH] u --- config-home.sh | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/config-home.sh b/config-home.sh index e598e37..6ff32b8 100755 --- a/config-home.sh +++ b/config-home.sh @@ -35,9 +35,8 @@ if [ ! -d $SourcePath ] then echo "!!! Not existing $SourcePath, please try again" else - echo "Copy nixhome scripts from $SourcePath" + echo "Linking $SourcePath/* to $HomePath" pushd $HomePath - echo "---------------------------------------------" homescriptlist=".emacs .emacs.lisp .bashrc .bash_profile .gitignore" for homescript in $homescriptlist do @@ -48,10 +47,9 @@ else ln -s $SourcePath/$homescript $HomePath echo $HomePath/$homescript == $SourcePath/$homescript done - echo "---------------------------------------------" popd - echo "Home Setting $HomePath Complete" + echo "Linked $SourcePath/* to $HomePath" fi -echo "Applying home setting..." +echo "Applying .$HomePath/.bashrc" source $HomePath/.bashrc