hammerspoon and reorganize old files to legacy

This commit is contained in:
Noah Masur
2022-06-14 07:32:27 -04:00
parent c048b7244f
commit df59e376f2
52 changed files with 2 additions and 0 deletions

15
legacy/scripts/brews Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
DOTS=$(dirname "$0")/..
cd "$DOTS" || (echo "Directory not found: $DOTS"; exit 1)
DOTS="$PWD"
all_brews() {
find "$DOTS/homebrew" \
-iname "*.Brewfile" \
-exec \
/usr/local/bin/brew bundle install --file "{}" \;
echo "all brews installed ✓"
}
all_brews