X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/gitweb.css?a=blobdiff_plain;f=symlink.sh;h=8a5488e1a2e3ba225924da0d0584d2efa841e2c4;hb=e92f47f3957789c6b66c75c8ffd5b6520139a462;hp=3d399d37e23101fcbf6914693a4f576c8f2f2f89;hpb=fb80d489e900b30ddd421b002171612227d95ae0;p=config diff --git a/symlink.sh b/symlink.sh index 3d399d3..8a5488e 100755 --- a/symlink.sh +++ b/symlink.sh @@ -1,7 +1,22 @@ #!/bin/sh -dir=~/config/dotfiles -cd ~ -for file in `ls $dir`; do - ln -s $dir/$file ~/.$file +set -x + +dir_user_minimal=~/config/dotfiles_user_minimal +dir_user_thinkpad=~/config/dotfiles_user_thinkpad +dir_root=~/config/dotfiles_root +homedir=`echo ~` +find ~ -lname $homedir'/config/*' -delete +for file in `ls $dir_user_minimal`; do + ln -s $dir_user_minimal/$file ~/.$file done +if [ "$1" = "thinkpad" ]; then + for file in `ls $dir_user_thinkpad`; do + ln -s $dir_user_thinkpad/$file ~/.$file + done +fi +if [ "$(id -u)" -eq "0" ]; then + for file in `ls $dir_root`; do + ln -fs $dir_root/$file ~/.$file + done +fi