From 9dbce2b880b7d32c1a263a514dec5c3fa067dc12 Mon Sep 17 00:00:00 2001
From: Christian Heller <c.heller@plomlompom.de>
Date: Sat, 8 Aug 2015 04:11:22 +0200
Subject: [PATCH] Always overwrite destination files in symlink script.

---
 symlink.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/symlink.sh b/symlink.sh
index 8a5488e..303fa98 100755
--- a/symlink.sh
+++ b/symlink.sh
@@ -8,11 +8,11 @@ dir_root=~/config/dotfiles_root
 homedir=`echo ~`
 find ~ -lname $homedir'/config/*' -delete
 for file in `ls $dir_user_minimal`; do
-    ln -s $dir_user_minimal/$file ~/.$file
+    ln -fs $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
+        ln -fs $dir_user_thinkpad/$file ~/.$file
     done
 fi
 if [ "$(id -u)" -eq "0" ]; then
-- 
2.30.2