home · contact · privacy
Separate dotfiles into those used on thinkpad and those used always.
[config] / symlink.sh
index 1b966ef2d650ce73c26069cc413a5b0a36259484..8a5488e1a2e3ba225924da0d0584d2efa841e2c4 100755 (executable)
@@ -2,13 +2,19 @@
 
 set -x
 
-dir=~/config/dotfiles
+dir_user_minimal=~/config/dotfiles_user_minimal
+dir_user_thinkpad=~/config/dotfiles_user_thinkpad
 dir_root=~/config/dotfiles_root
 homedir=`echo ~`
 find ~ -lname $homedir'/config/*' -delete
-for file in `ls $dir`; do
-    ln -s $dir/$file ~/.$file
+for file in `ls $dir_user_minimal`; do
+    ln -s $dir_user_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