X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=symlink.sh;h=e2f614f726a874a685933eaf5228266aa68413d3;hb=bba6123e4e78844c17be915b248602c162570279;hp=303fa98af980ebf4f48a2f437b777c148189eb91;hpb=9dbce2b880b7d32c1a263a514dec5c3fa067dc12;p=config diff --git a/symlink.sh b/symlink.sh index 303fa98..e2f614f 100755 --- a/symlink.sh +++ b/symlink.sh @@ -4,6 +4,7 @@ set -x 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 @@ -14,6 +15,10 @@ 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