X-Git-Url: https://plomlompom.com/repos/do_todos?a=blobdiff_plain;f=symlink.sh;h=fabee57c51f2969ba963d8ec0221dcf6b5b9736a;hb=9ac68d1cb7fdd3ee3baa6ebdb02c35d5f83b9717;hp=1b966ef2d650ce73c26069cc413a5b0a36259484;hpb=8db1ace1141713a4199422eab83574c1f5e94a08;p=config diff --git a/symlink.sh b/symlink.sh index 1b966ef..fabee57 100755 --- a/symlink.sh +++ b/symlink.sh @@ -2,13 +2,28 @@ set -x -dir=~/config/dotfiles +dir_minimal=~/config/dotfiles_minimal +dir_user_minimal=~/config/dotfiles_user_minimal +dir_user_thinkpad=~/config/dotfiles_user_thinkpad +dir_user_server=~/config/dotfiles_user_server dir_root=~/config/dotfiles_root homedir=`echo ~` find ~ -lname $homedir'/config/*' -delete -for file in `ls $dir`; do - ln -s $dir/$file ~/.$file +for file in `ls $dir_minimal`; do + ln -fs $dir_minimal/$file ~/.$file done +for file in `ls $dir_user_minimal`; do + ln -fs $dir_user_minimal/$file ~/.$file +done +if [ "$1" = "thinkpad" ]; then + for file in `ls $dir_user_thinkpad`; do + ln -fs $dir_user_thinkpad/$file ~/.$file + done +elif [ "$1" = "server" ]; then + for file in `ls $dir_user_server`; do + ln -fs $dir_user_server/$file ~/.$file + done +fi if [ "$(id -u)" -eq "0" ]; then for file in `ls $dir_root`; do ln -fs $dir_root/$file ~/.$file