X-Git-Url: https://plomlompom.com/repos/feed.xml?a=blobdiff_plain;f=symlink.sh;h=8a5488e1a2e3ba225924da0d0584d2efa841e2c4;hb=e92f47f3957789c6b66c75c8ffd5b6520139a462;hp=a78b1dec9ad57240b49b7367db5623c558fb6d2d;hpb=e10414b6e6106395ff4f4b298b542ff74513aadd;p=config diff --git a/symlink.sh b/symlink.sh index a78b1de..8a5488e 100755 --- a/symlink.sh +++ b/symlink.sh @@ -1,11 +1,21 @@ #!/bin/sh -dir=~/config/dotfiles +set -x + +dir_user_minimal=~/config/dotfiles_user_minimal +dir_user_thinkpad=~/config/dotfiles_user_thinkpad dir_root=~/config/dotfiles_root -for file in `ls $dir`; do - ln -fs $dir/$file ~/.$file +homedir=`echo ~` +find ~ -lname $homedir'/config/*' -delete +for file in `ls $dir_user_minimal`; do + ln -s $dir_user_minimal/$file ~/.$file done -if [ "$(id -u)" -ne "0" ]; then +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