summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJustin Gassner <justin.gassner@mailbox.org>2019-11-17 19:47:51 +0100
committerJustin Gassner <justin.gassner@mailbox.org>2019-11-17 19:47:51 +0100
commit549ac21b22b23499d0dc477ade242580a5b880e9 (patch)
tree678a49292ef96b7e09678c375d27238787f20cab
parent29581195bdee1e55eefb4e1deb5621b2048bb74c (diff)
downloadpackages-549ac21b22b23499d0dc477ade242580a5b880e9.tar.zst
Add cleanup script
-rwxr-xr-xgc7
1 files changed, 7 insertions, 0 deletions
diff --git a/gc b/gc
new file mode 100755
index 0000000..013f868
--- /dev/null
+++ b/gc
@@ -0,0 +1,7 @@
+#!/usr/bin/bash
+
+for pkg in dmenu dwm ffmpeg mpop mpv msmtp mutt neovim pass slock st vifm youtube-dl; do
+ git -C $pkg/$pkg gc --prune=now
+done
+
+# vim: ft=sh