X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=symlink.sh;h=e2f614f726a874a685933eaf5228266aa68413d3;hb=289dcf67fe8e476ac017c01bef18b7cbd5f7b749;hp=9343880d057918d81c4f0999c5b6523c1ada5459;hpb=0ca4a530f49d5b15acccab40cad58ceb00327f7c;p=config diff --git a/symlink.sh b/symlink.sh index 9343880..e2f614f 100755 --- a/symlink.sh +++ b/symlink.sh @@ -1,7 +1,27 @@ #!/bin/sh -dir=~/config/dotfiles -cd ~ -for file in `ls $dir`; do - ln -fs $dir/$file ~/.$file +set -x + +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_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 + done +fi