X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7B%20card_id%20%7D%7D/delete?a=blobdiff_plain;f=symlink.sh;h=412b55d9e3001c7d8b425902eaa26b66ed9a47a8;hb=1277fce3b6a1d59634159fcb6bac6912856da28c;hp=e2f614f726a874a685933eaf5228266aa68413d3;hpb=6a36e378531bf403711b2007fcc02970edff9a37;p=config diff --git a/symlink.sh b/symlink.sh index e2f614f..412b55d 100755 --- a/symlink.sh +++ b/symlink.sh @@ -2,26 +2,31 @@ 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 +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 -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 +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