X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=bin%2Fsymlink.sh;h=5f4fc8177d6cb500b96bb6ffcaa82d81707c1ba1;hb=67e783c56b750fdb3d9e77eada3cd3dd9935d5f7;hp=a4c699df550f2758daebf960a9ee513b96263ad3;hpb=79dc5d5f6bb316807da0604147f89ff410ab5b5c;p=config diff --git a/bin/symlink.sh b/bin/symlink.sh index a4c699d..5f4fc81 100755 --- a/bin/symlink.sh +++ b/bin/symlink.sh @@ -1,13 +1,13 @@ #!/bin/sh set -x +set -e dir_minimal=~/config/dotfiles/minimal -dir_user_minimal=~/config/dotfiles/user/minimal -dir_user_thinkpad=~/config/dotfiles/user/thinkpad -dir_user_X200s=~/config/dotfiles/user/x200s -dir_user_T450s=~/config/dotfiles/user/t450s -dir_user_server=~/config/dotfiles/user/server +dir_user_prefix=~/config/dotfiles/user +dir_user_minimal=$dir_user_prefix/minimal +dir_user_machine=$dir_user_prefix/$1 +dir_user_variety=$dir_user_prefix/$2 dir_root=~/config/dotfiles/root homedir=`echo ~` find ~ -lname $homedir'/config/*' -delete @@ -22,22 +22,10 @@ else 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 - if [ "$2" = "X200s" ]; then - for file in `ls $dir_user_X200s`; do - ln -fs $dir_user_X200s/$file ~/.$file - done - else - for file in `ls $dir_user_T450s`; do - ln -fs $dir_user_T450s/$file ~/.$file - done - fi - elif [ "$1" = "server" ]; then - for file in `ls $dir_user_server`; do - ln -fs $dir_user_server/$file ~/.$file - done - fi + for file in `ls $dir_user_machine`; do + ln -fs $dir_user_machine/$file ~/.$file + done + for file in `ls $dir_user_variety`; do + ln -fs $dir_user_variety/$file ~/.$file + done fi