-
[scripts/scripts.git] / backup.sh
index e477347..b589589 100755 (executable)
--- a/backup.sh
+++ b/backup.sh
@@ -165,16 +165,20 @@ if [ "$host" = "gate" ] ; then
 
 fi
 
-# hackstation specific data
+# hackstation / mobile / hdw / sparc specific data
 if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" -o "$host" = "sparc" ] ; then
 
        # home of hackbard
        mkdir -p ./home/hackbard
        echo "copying home"
-       for i in projects software store; do
+       for i in software store; do
                [ -d /home/hackbard/$i ] && \
                        cp -r /home/hackbard/$i ./home/hackbard
        done
+       if [ "$host" = "hackstation" ]; then
+               [ -d /home/hackbard/projects ] && \
+                       cp -r /home/hackbard/projects ./home/hackbard
+       fi
        for i in xinitrc_evil xinitrc_wm .xinitrc GNUstep .Xauthority \
                        .Xdefaults .signature .directfbrc; do
                [ -f /home/hackbard/$i ] && \
@@ -182,6 +186,9 @@ if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" -o "$host"
        done
        cp -r /home/hackbard/.ssh ./home/hackbard
 
+       # hunz config
+       [ -f /home/hackbard/hunz.sh ] && cp /home/hackbard/hunz.sh ./home/hackbard
+
 fi