aboutsummaryrefslogtreecommitdiff
path: root/sync
diff options
context:
space:
mode:
authorMarvin Borner2020-06-14 16:41:35 +0200
committerMarvin Borner2020-06-14 16:41:35 +0200
commit9ce9e64fb688161b7aa09d2c82bde010000b8368 (patch)
treeb6a6f3b85d9f850aa2a1a6e2858df41353f833b0 /sync
parent88565e120f0564f2354925617a83f1496353bb8d (diff)
Added new sync process via external dir
Diffstat (limited to 'sync')
-rwxr-xr-xsync37
1 files changed, 34 insertions, 3 deletions
diff --git a/sync b/sync
index 0164156..d7e0df3 100755
--- a/sync
+++ b/sync
@@ -1,5 +1,26 @@
#!/usr/bin/env bash
# The most awesome sync script! :)
+# This shouldn't be used anywhere else than on my PCs!
+
+printf "\033[0;31m"
+
+if [ -z "$HOME" ] || ! [ -x "$(command -v pacman)" ]; then
+ echo "Something went wrong!"
+ printf "\033[0m"
+ exit 1
+fi
+
+echo "WARNING: This will replace all your existing configs!"
+read -p "Are you sure you want to do this? [yn] " -n 1 -r
+if [[ ! $REPLY =~ ^[Yy]$ ]]; then
+ printf "\033[0m"
+ echo
+ exit 1
+fi
+echo
+
+printf "\033[0;32m"
+echo "Okay, syncing..."
printf "\033[0;34m"
echo "Pulling newest configs"
@@ -7,7 +28,7 @@ git pull --quiet || exit 1
printf "\033[0;34m"
echo "Syncing packages"
-sudo pacman -Syq &> /dev/null
+sudo pacman -Syq &>/dev/null
printf "\033[0;34m"
echo "Comparing installed packages"
@@ -15,10 +36,20 @@ comm -23 <(sort packages.txt) <(pacman -Qqe | sort) | yay -Sq --needed -
printf "\033[0;34m"
echo "Compiling local repos"
-for d in ./.repos/*/ ; do (cd "$d" && sudo make clean install &> /dev/null); done || exit 1
+for d in ./.repos/*/; do (cd "$d" && sudo make clean install &>/dev/null); done || exit 1
+
+printf "\033[0;34m"
+echo "Copying configs"
+printf "\033[0;37m"
+cp -rv .config/ .lein/ .scripts/ .bash_profile .bashrc .xinitrc .Xresources "$HOME"/
+sudo cp -rv .etc/* /etc/
printf "\033[0;34m"
echo "Syncing crypto files from server"
-scp -rq root@10.0.0.33:/mnt/ssd/.crypto "$HOME"/
+ping -q -w1 -c1 10.0.0.33 &>/dev/null &&
+ scp -rq root@10.0.0.33:/mnt/ssd/.crypto "$HOME"/ ||
+ echo "Server connection failed"
+
+echo "Finished!"
printf "\033[0m"