aboutsummaryrefslogtreecommitdiff
path: root/sync
diff options
context:
space:
mode:
Diffstat (limited to 'sync')
-rwxr-xr-xsync6
1 files changed, 6 insertions, 0 deletions
diff --git a/sync b/sync
new file mode 100755
index 0000000..cb1198d
--- /dev/null
+++ b/sync
@@ -0,0 +1,6 @@
+#!/usr/bin/env bash
+# The most awesome sync script! :)
+
+git pull || exit 1
+comm -23 <(sort packages.txt) <(pacman -Qqe | sort) | yay -S --needed -
+for d in ./.repos/*/ ; do (cd "$d" && sudo make install); done || exit 1