mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-09 23:22:57 +00:00
fix brewfiles
This commit is contained in:
parent
9cf4c348ee
commit
7cf8d00663
@ -1,8 +1,8 @@
|
|||||||
# Fun / Unnecessary Packages
|
# Fun / Unnecessary Packages
|
||||||
|
|
||||||
tap "nmasur/repo"
|
tap "nmasur/repo"
|
||||||
|
tap "tarkah/tickrs"
|
||||||
|
|
||||||
brew "ffmpeg" # Convert videos
|
brew "ffmpeg" # Convert videos
|
||||||
brew "nmasur/repo/bid" # Look up stock tickers
|
brew "nmasur/repo/bee" # Cheat on NYTimes Spelling Bee
|
||||||
brew "nmasur/repo/bee" # Cheat on NYTimes Spelling Bee
|
brew "tarkah/tickrs/tickrs" # Interactive stock tickers
|
||||||
brew "tickrs" # Interactive stock tickers
|
|
||||||
|
@ -5,7 +5,7 @@ tap "nmasur/repo"
|
|||||||
tap "cjbassi/ytop"
|
tap "cjbassi/ytop"
|
||||||
|
|
||||||
brew "superfly/tap/flyctl" # Fly.io CLI
|
brew "superfly/tap/flyctl" # Fly.io CLI
|
||||||
brew "haskell-stack" # Latest version of Haskell
|
brew "ghc" # Haskell
|
||||||
brew "xsv" # CSV manipulation
|
brew "xsv" # CSV manipulation
|
||||||
brew "gron" # JSON grep
|
brew "gron" # JSON grep
|
||||||
brew "nushell" # Data manipulation shell
|
brew "nushell" # Data manipulation shell
|
||||||
|
@ -1,7 +1,5 @@
|
|||||||
# Utility Packages
|
# Utility Packages
|
||||||
|
|
||||||
tap "nmasur/repo"
|
|
||||||
|
|
||||||
brew "jq" # JSON manipulation
|
brew "jq" # JSON manipulation
|
||||||
brew "dos2unix" # File conversion
|
brew "dos2unix" # File conversion
|
||||||
brew "tree" # Display directory trees
|
brew "tree" # Display directory trees
|
||||||
|
@ -5,12 +5,11 @@ cd "$DOTS" || (echo "Directory not found: $DOTS"; exit 1)
|
|||||||
DOTS="$PWD"
|
DOTS="$PWD"
|
||||||
|
|
||||||
all_brews() {
|
all_brews() {
|
||||||
for brewfile in $(find "$DOTS/homebrew" -iname "*.Brewfile")
|
find "$DOTS/homebrew" \
|
||||||
do
|
-iname "*.Brewfile" \
|
||||||
/usr/local/bin/brew bundle check --file "$brewfile" \
|
-exec \
|
||||||
&& /usr/local/bin/brew bundle --file "$brewfile"
|
/usr/local/bin/brew bundle install --file "{}" \;
|
||||||
done \
|
echo "all brews installed ✓"
|
||||||
&& echo "all brews installed ✓"
|
|
||||||
}
|
}
|
||||||
|
|
||||||
all_brews
|
all_brews
|
||||||
|
Loading…
Reference in New Issue
Block a user