X-Git-Url: https://plomlompom.com/repos/bar%20baz.html?a=blobdiff_plain;ds=sidebyside;f=symlink.sh;h=f0e6345b225867cb93b44174f7a88a2e63c169c6;hb=62c0fa84083528ad1d5f01569689230263aab8d2;hp=303fa98af980ebf4f48a2f437b777c148189eb91;hpb=9dbce2b880b7d32c1a263a514dec5c3fa067dc12;p=config diff --git a/symlink.sh b/symlink.sh index 303fa98..f0e6345 100755 --- a/symlink.sh +++ b/symlink.sh @@ -2,21 +2,31 @@ set -x +dir_minimal=~/config/dotfiles_minimal 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 homedir=`echo ~` find ~ -lname $homedir'/config/*' -delete -for file in `ls $dir_user_minimal`; do - ln -fs $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 -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 +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