aboutsummaryrefslogtreecommitdiff
path: root/sync
diff options
context:
space:
mode:
authorMarvin Borner2020-05-20 18:38:24 +0200
committerMarvin Borner2020-05-20 18:38:24 +0200
commit8cad82345565ae883a0c8fde8bf8ad3fd3159f7c (patch)
tree1da5a028685af971f488f4cbb3161bcc8f2219fe /sync
parent3d08d52756c17f315c6441f774ce298761d29572 (diff)
Way better syncing scripts etc
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