X-Git-Url: https://plomlompom.com/repos/%7B%7Bprefix%7D%7D/edit?a=blobdiff_plain;f=symlink.sh;h=332cd533fab8f16cce506b848a664ba06f2d2600;hb=91fefe78e7da58646b85f864c53cee30a6ae0376;hp=8a5488e1a2e3ba225924da0d0584d2efa841e2c4;hpb=e92f47f3957789c6b66c75c8ffd5b6520139a462;p=config diff --git a/symlink.sh b/symlink.sh index 8a5488e..332cd53 100755 --- a/symlink.sh +++ b/symlink.sh @@ -2,21 +2,31 @@ set -x -dir_user_minimal=~/config/dotfiles_user_minimal -dir_user_thinkpad=~/config/dotfiles_user_thinkpad -dir_root=~/config/dotfiles_root +dir_minimal=~/config/dotfiles +dir_user_minimal=~/config/dotfiles/user +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 -s $dir_user_minimal/$file ~/.$file +for file in `ls $dir_minimal`; do + ln -fs $dir_minimal/$file ~/.$file done -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 +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 + elif [ "$1" = "server" ]; then + for file in `ls $dir_user_server`; do + ln -fs $dir_user_server/$file ~/.$file + done + fi fi