for file in `ls $dir_minimal`; do
     ln -fs $dir_minimal/$file ~/.$file
 done
-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
 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