home · contact · privacy
Update Firefox.
[config] / bin / symlink.sh
index 412b55d9e3001c7d8b425902eaa26b66ed9a47a8..d653a0b9d01001957dd8be53002ff1c0110afe46 100755 (executable)
@@ -1,11 +1,18 @@
 #!/bin/sh
 
 set -x
+set -e
 
 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_user_prefix=~/config/dotfiles/user
+dir_user_minimal=$dir_user_prefix/minimal
+dir_user_machine=$dir_user_prefix/$1/minimal
+if [ "$3" = "" ]; then
+    dir_user_variety=$dir_user_prefix/$1/$2
+else
+    dir_user_variety=$dir_user_prefix/$1/$2/minimal
+fi
+dir_user_subvariety=$dir_user_prefix/$1/$2/$3
 dir_root=~/config/dotfiles/root
 homedir=`echo ~`
 find ~ -lname $homedir'/config/*' -delete
@@ -20,13 +27,15 @@ 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
+    for file in `ls $dir_user_machine`; do
+        ln -fs $dir_user_machine/$file ~/.$file
+    done
+    for file in `ls $dir_user_variety`; do
+        ln -fs $dir_user_variety/$file ~/.$file
+    done
+    if [ ! "$3" = "" ]; then
+        for file in `ls $dir_user_subvariety`; do
+            ln -fs $dir_user_subvariety/$file ~/.$file
         done
     fi
 fi