X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=symlink.sh;h=e2f614f726a874a685933eaf5228266aa68413d3;hb=8a7f3f76a02c968a4d9e6aa1561ff4f7749229bf;hp=f3399aaffa323615b77e0af1924207d40648e282;hpb=f2d96345f2aab50baae4c00ec78a21d4619bc3e2;p=config diff --git a/symlink.sh b/symlink.sh index f3399aa..e2f614f 100755 --- a/symlink.sh +++ b/symlink.sh @@ -2,12 +2,25 @@ set -x -dir=~/config/dotfiles +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 -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 -fs $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 -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