home · contact · privacy
Improve i3 config.
[config] / symlink.sh
index f3399aaffa323615b77e0af1924207d40648e282..303fa98af980ebf4f48a2f437b777c148189eb91 100755 (executable)
@@ -2,12 +2,20 @@
 
 set -x
 
-dir=~/config/dotfiles
+dir_user_minimal=~/config/dotfiles_user_minimal
+dir_user_thinkpad=~/config/dotfiles_user_thinkpad
 dir_root=~/config/dotfiles_root
-for file in `ls $dir`; do
-    ln -fs $dir/$file ~/.$file
+homedir=`echo ~`
+find ~ -lname $homedir'/config/*' -delete
+for file in `ls $dir_user_minimal`; do
+    ln -fs $dir_user_minimal/$file ~/.$file
 done
-if [ "$(id -u)" -ne "0" ]; then
+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