X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/move_up?a=blobdiff_plain;f=symlink.sh;h=303fa98af980ebf4f48a2f437b777c148189eb91;hb=a5ef7f7d00e45073870dbffea8bc98ea8449379c;hp=abb261c633662b7d622e46a934bb16bff1675274;hpb=842cf63728159ac528309278c51f5390c4b02574;p=config diff --git a/symlink.sh b/symlink.sh old mode 100644 new mode 100755 index abb261c..303fa98 --- a/symlink.sh +++ b/symlink.sh @@ -1,7 +1,22 @@ #!/bin/sh -dir=~/config/dotfiles -cd ~ -for file in $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 -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 +fi +if [ "$(id -u)" -eq "0" ]; then + for file in `ls $dir_root`; do + ln -fs $dir_root/$file ~/.$file + done +fi