home · contact · privacy
Improve i3 config.
[config] / symlink.sh
index 9343880d057918d81c4f0999c5b6523c1ada5459..303fa98af980ebf4f48a2f437b777c148189eb91 100755 (executable)
@@ -1,7 +1,22 @@
 #!/bin/sh
 
-dir=~/config/dotfiles
-cd ~
-for file in `ls $dir`; do
-    ln -fs $dir/$file ~/.$file
+set -x
+
+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_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
+fi
+if [ "$(id -u)" -eq "0" ]; then
+    for file in `ls $dir_root`; do
+        ln -fs $dir_root/$file ~/.$file
+    done
+fi