-
Notifications
You must be signed in to change notification settings - Fork 2
/
brew-install-our-basics-automatically.sh
executable file
·2227 lines (1958 loc) · 46 KB
/
brew-install-our-basics-automatically.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/sh
#
# Use Homebrew to install our favorite formulas for typical use,
# and that can be installed fully automatically i.e. unattended.
#
# If you're using this file and you find any packages that
# do not install automatically, please let us know by opening
# an issue, or emailing us, or creating a pull request. Thanks!
##
# Update - this is always the first step
brew update
##
# Tap
##
brew tap bramstein/webfonttools
brew tap caskroom/cask
brew tap caskroom/fonts
brew tap homebrew/binary
brew tap homebrew/brewdler
brew tap homebrew/core
brew tap homebrew/dupes
brew tap homebrew/fuse
brew tap homebrew/versions
brew tap jingweno/ccat
brew tap rafaelgarrido/homebrew-caveats && brew install brew-caveats
##
# Quickstart
#
# Install any free open source applications that we want running ASAP.
# We also install these in their respective sections too, for completeness.
##
# Our favorite terminal
brew cask install iterm2
# Our favorite editor
brew cask install vim
# Our favorite web browser
brew cask install firefox
# Our favorite messenger
brew cask install signal
# Our favorite pager
brew install bat
# Our favorite Virtual Private Network (VPN)
brew cask install expressvpn
##
# Passwords
##
# 1password is a password manager
brew cask install 1password
# LastPass is a password manager
brew cask install lastpass
# Keybase.io digital signature manager
brew install keybase
##
# Fundamental
##
# Automake is a tool for automatically generating Makefile installation files.
brew install automake
# Basic file, shell and text manipulation utilities of the GNU operating system.
brew install coreutils
# GNU stream editor; compare `sed`.
brew install gnu-sed --default-names
# GNU Privacy Guard (GnuPG) provides encryption as a free replacement for PGP.
brew install gpg
# OpenSSL is an open-source implementation of the SSL and TLS protocols.
brew install openssl
# pkg-config is a helper tool used when compiling applications and libraries.
brew install pkg-config && brew link pkg-config && brew install tmux
# Functions for use by applications that allow users to edit command lines while typing.
brew install readline
##
# Shell related
##
# Bash is the Bourne Again SHell. Bash is an sh-compatible shell.
brew install bash
# TBD
brew install bash-completion
# TBD
brew install bashish
# Zsh is a shell designed for interactive use.
brew install zsh
# Mobile Shell (MOSH) is like SSH plus roaming and smart echo.
brew install mobile-shell
# Parallel SSH
brew install pssh
# PCRE: Perl-compatible regular expressions, for better searching.
brew install pcre
brew install pcre++
# GNU moreutils, including `parallel`, `sponge`, etc.
brew install moreutils
# FZF fuzzy finder
brew install fzf; /usr/local/opt/fzf/install
# Angle grinder: slice and dice log files on the command line
brew install agrind-bin
##
# Terminals
#
# We typically use `tmux` and `tmate`,
# and sometimes fall back on `screen`.
##
# iTerm is our favorite terminal app.
brew cask install iterm2
# tmux is a newer terminal multiplexer.
brew install pkg-config && brew link pkg-config && brew install tmux
# tmate is a fork of tmux that makes screen sharing friendlier.
brew install tmate
# Screen is an older terminal multiplexer.
brew install homebrew/dupes/screen
# ngrok opens a secure tunnel to localhost
brew install ngrok
##
# File compression/decompresses
##
# WinRAR provides compression/decompression for RAR and ZIP files.
brew install unrar
# Zstandard is the best modern compression
brew install zstd
# Unrar uncmopressor
brew install unrar
# Unzip uncompressor
brew install homebrew/dupes/unzip
# Keka free file archiver
brew cask install keka
# Libs
brew install libzip
brew install libzzip
##
# Fetchers
##
# Android file transfer
brew cask install android-file-transfer
# Carthage is a simple, decentralized dependency manager for Cocoa
brew install carthage
# Homebrew Cask extends Homebrew to install OS X applications and large binaries.
brew install cask
# curl is a command line tool for transferring data with URL syntax
brew install curl
# HTTrack is a free and easy-to-use offline browser utility.
brew install httrack
# Googler is a command line interface tool to search Google.
brew install googler
# Wget is a free software package for retrieving files using HTTP and FTP.
brew install wget
# Syncthing is open source file sharing
brew install syncthing
##
# Windowers
##
# Spectacle: Window control with simple and customizable keyboard shortcuts
# https://www.spectacleapp.com/
brew cask install spectacle
# TermHere: place a “New Terminal Here” button in the Finder toolbar
# https://hbang.ws/apps/termhere/
brew cask install termhere
##
# Browsers
##
# Firefox web browser by Mozilla
brew cask install firefox
# Chrome web browser by Google
brew cask install google-chrome
# Vivaldi web browser
brew cask install vivaldi
# The Onion Router
brew install tor
##
# Messengers
##
# Adium is an open source multi-protocol instant messaging client.
brew cask install adium
# WhatsApp is a widespread chat app, now owned by Facebook
brew cask install whatsapp
##
# Version Control
##
# CVS is a version control system.
brew install cvs
# Git is a free and open source distributed version control system.
brew install git
brew cask install git
brew cask install gitup
# Git Large File Storage
brew install git-lfs
# TBD
brew install git-cola
# Git extras: utilities including summary, repl, population, etc.
brew cask install git-extras
# Git extensions to provide high-level operations for Git Flow branching model.
brew install git-flow
# TBD
brew install git-ftp
# TBD
brew install git-gerrit
# TBD
brew install git-multipush
# TBD
brew install git-now
# TBD
brew install git-url-sub
# Mercurial version control system.
brew install hg
# Subversion version control system.
brew install sqlite && brew link sqlite && brew install subversion
##
# Utility-Related
##
# Alfred: boost your efficiency with hotkeys, keywords, text expansion, etc.
brew install alfred
##
# Editing-Related
##
# GNU Aspell is a free open source spell checker; compare `lspell`.
brew install aspell --with-lang=en
# Sublime text editor
brew cask install sublime-text
# Emacs editor
brew cask install emacs
# Vim editor
brew install vim
# MacVIM editor
brew cask install macvim
# Enca - detect and convert encoding of text files
brew install enca
# Atom editor by GitHub
brew cask install atom
##
# Search tools for command line and text files
##
# ripgrep is text search; we prefer it over grep, ag, git grep, ucg, pt, sift.
brew install ripgrep
# ag is "the silver searcher" search tool; compare ripgrep.
brew install ag
# sift is like grep, plus faster and with more features; compare ripgrep.
brew install sift
# Universal Code Grep is good for searching large bodies of source code
brew install ucg
# pt is "the platinum searcher" search tool; aims to be better than "ag".
brew install pt
##
# Tools
##
# Ansible is a simple way to automate apps and IT infrastructure.
brew install ansible
# xsv is for CSV file parsing, and is fast, full featured, and flexible.
brew install xsv
# Tad is a CSV viewer with feature for pivot, search, etc.
brew cask install tad
# jq is a lightweight and flexible command-line JSON processor.
brew install jq
# TBD
brew install gawk
# GraphicsMagick is the swiss army knife of image processing.
brew install graphicsmagick
# TBD
brew install graphviz
# Gnuplot is a portable command-line driven graphing utility.
brew install gnuplot
# TBD
brew install html-xml-utils
# TBD
brew install lynx
# Most is a powerful paging program; compare `less` and `more`.
brew install most
# Mutt is a small powerful text-based mail client.
brew install mutt
# Netcat is a networking utility for the TCP/IP protocol.
brew install netcat
# TBD
brew install ncdu
# TBD
brew install randomize-lines
# TBD
brew install rename
# TBD
brew install salt
# Tree is a directory lister that shows a tree outline.
brew install tree
# Unison is a high-level file synchronization utility; compare `rsync`.
brew install unison
# xclip is a command line interface to the X11 clipboard.
brew install xclip
##
# Media-Related
##
# Adobe Create Cloud: Photoshop, Illustrator, etc.
brew cask install adobe-creative-cloud
brew install exif
brew install exiftags
brew install exiftool
brew install flac
brew install ffmpeg
brew install ffmpeg2theora
brew install ffmpegthumbnailer
# ImageMagick image editor command line interface.
brew install imagemagick
# Kindle book reader.
brew install kindle
# Theora open video codec.
brew install theora
# Spotify music player.
brew cask install spotify
# Slate media library for presentations.
brew cask install slate
# VLC media player
brew cask install vlc
##
# Torrent-Related
##
# BitTorrent Syc
brew cask install bittorrent-sync
# Transmission bittorrent client.
brew cask install transmission
# Extras
#brew install mktorrent
#brew install rtorrent
#brew install libtorrent
#brew install libtorrent-rasterbar
##
# Font-Related
##
# Fontconfig is a library for configuring and customizing font access.
brew install fontconfig
# FreeType is a freely available software library to render fonts.
brew install freetype
# Hack is a font for programmers
brew cask install font-hack
##
# Image-Related
##
brew install libgphoto2
brew install libpng
brew install libtiff
# Jasper command line transcoder between JPEG2000 and other formats.
brew install jasper
##
# Productivity
##
# LibreOffice is a large editor for text, spreadsheets, diagrams.
brew cask install libreoffice
# OmniFocus task manager (fee).
brew cask install omnifocus
# OmniGraffle diagram drawing editor (fee).
brew cask install omnigraffle
# MindNode mind-mapping helps you visualize your ideas (fee).
brew cask install mindnode-pro
##
# Communication
##
# Skype calling with video and phone calls.
brew cask install skype
# Discord chat
brew cask install discord
# Slack chat client
brew cask install slack
# Signal encrypted messaging
brew cask install signal
##
# Uncategorized
##
brew install abook
brew install ack
brew install ascii
brew install asciidoc
brew install asciitex
brew install autobench
brew install autoconf
brew install autoenv
brew install autogen
brew install autojump
brew install base64
brew install bcrypt
brew install bind
brew install binutils
brew install bison
brew install bogofilter
brew install colordiff
brew install ctags
brew install docbook
brew install dovecot
brew install doxygen
brew install dpkg
brew install fakeroot
brew install findutils
brew install geoip
brew install gnu-barcode
brew install gnu-getopt
brew install gnu-indent
brew install gnu-prolog
brew install gnu-sed --default-names
brew install gnu-smalltalk
brew install gnu-tar
brew install gnu-time
brew install gnu-typist
brew install gnu-units
brew install gnu-which
brew install google-app-engine
brew install google-js-test
brew install google-perftools
brew install google-sparsehash
brew install google-sql-tool
brew install htop
brew install httperf
brew install ical-buddy
brew install jmeter
brew install jpeg
brew isntall libdnet
brew install lzo
brew install rarian
brew install pixman
brew install scrypt
# Tarsnap is a secure online backup service for Unix.
brew install tarsnap
# WINE runs Windows applications on other operating systems.
brew install wine
# Xapian is an open-source search engine library.
brew install xapian
##
# Dupes
#
# These formulas duplicate software provided by OS X,
# though may provide more recent or bugfix versions.
#
# We prefer to keep these explicitly listed in `/dupes`
# because these are potentially shadowing system tools,
# and we want to show that these are unusual and special.
#
# If you prefer to type less, then you can tap, like this:
#
# brew tap homebrew/dupes
#
# Then you can install any forumla, such as:
#
# brew install awk
#
##
brew install homebrew/dupes/awk
brew install homebrew/dupes/diffstat
brew install homebrew/dupes/diffutils
brew install homebrew/dupes/ed
brew install homebrew/dupes/expect
brew install homebrew/dupes/fetchmail
brew install homebrew/dupes/file-formula
brew install homebrew/dupes/gdb
brew install homebrew/dupes/gpatch
brew install homebrew/dupes/gperf
brew install homebrew/dupes/grep
brew install homebrew/dupes/groff
brew install homebrew/dupes/gzip
brew install homebrew/dupes/heimdal
brew install homebrew/dupes/lapack
brew install homebrew/dupes/less
brew install homebrew/dupes/libedit
brew install homebrew/dupes/libiconv
brew install homebrew/dupes/libpcap
brew install homebrew/dupes/lsof
brew install homebrew/dupes/m4
brew install homebrew/dupes/make
brew install homebrew/dupes/nano
brew install homebrew/dupes/ncurses
brew install homebrew/dupes/openldap
brew install homebrew/dupes/openssh
brew install homebrew/dupes/rsync
brew install homebrew/dupes/screen
brew install homebrew/dupes/tcl-tk
brew install homebrew/dupes/tcpdump
brew install homebrew/dupes/tidy
brew install homebrew/dupes/units
brew install homebrew/dupes/whois
brew install homebrew/dupes/zlib
##
# Brew cask enables installing typical Mac OS X applications.
# For example, these formulas may download a `*.dmg` file,
# then unpack it into the correct `/Applications` directory,
# and possibly configure the app with typical settings.
##
# TDB
brew cask install adventure
# TDB
brew cask install alfred
# TDB
brew cask install amazon-cloud-drive
# TDB
brew cask install amazon-music
# TDB
brew cask install android-file-transfer
# TDB
brew cask install anki
# AppCleaner thoroughly uninstalls unwanted apps.
brew cask install appcleaner
# TDB
brew cask install arq
# TDB
brew cask install atext
# TDB
brew cask install audacity
# TDB
brew cask install backblaze
# TDB
brew cask install backuploupe
# TDB
brew cask install balsamiq-mockups
# TDB
brew cask install bartender
# TDB
brew cask install basecamp
# TDB
brew cask install beacon-scanner
# TDB
brew cask install blender
# TDB
brew cask install box-sync
# TDB
brew cask install brain-workshop
# TDB
brew cask install cactus
# Prevent the system from sleeping, dimming, or starting screen savers
# http://lightheadsw.com/caffeine/
brew cask install caffeine
# TDB
brew cask install calibre
# TDB
brew cask install ccleaner
# TDB
brew cask install cheatsheet
# TDB
brew cask install chromecast
# TDB
brew cask install coconutbattery
# TDB
brew cask install codekit
# TDB
brew cask install commandq
# TDB
brew cask install dash
# TDB
brew cask install doxygen
# Dropbox file sharing
brew cask install dropbox
# Duet screen sharing
brew cask install duet
# TDB
brew cask install easysimbl
# Evernote cloud note-taking app
brew cask install evernote
# FileZilla FTP client
brew cask install filezilla
# Firefox web browser
brew cask install firefox
# Flash multimedia player
brew cask install flash
# TDB
brew cask install fluid
# Flux dims the screen colors for better nighttime visibility.
brew cask install flux
# TDB
brew cask install freeplane
# TDB
brew cask install ganttproject
# TDB
brew cask install gfxcardstatus
# GitHub source code social sharing
brew cask install github
# TDB
brew cask install gitx
# Google Chrome web browser
brew cask install google-chrome
# Google Drive cloud file storage
brew cask install google-drive
# Google Earth viewer for satellite imagery and maps.
brew cask install google-earth
# Google Music plays songs, especially with a subscription service.
brew cask install google-music
# TDB
brew cask install google-notifier
# TDB
brew cask install google-quick-search-box
# TDB
brew cask install google-refine
# TDB
brew cask install google-web-designer
# TDB
brew cask install grooveshark
# TDB
brew cask install harvest
# TDB
brew cask install hockey
# TDB
brew cask install hipchat
# iTerm terminal
brew cask install iterm2
# TDB
brew cask install joinme
# TDB
brew cask install jumpcut
# Kindle book reader by Amazon
brew cask install kindle
# TDB
brew cask install krita
# TDB
brew cask install launchy
# TDB
brew cask install little-snitch
# TBD
brew cask install mysqlworkbench
# TBD
brew cask install p4merge
# Pandora music player
brew cask install pandora-one
# TBD
brew cask install paparazzi
# Prezi slide show presentation.
brew cask install prezi
# TBD
brew cask install pupil
# TBD
brew cask install quicksilver
# Rdio music player.
brew cask install rdio
# TBD
brew cask install rescuetime
# Screenhero screen sharing by Slack.
brew cask install screenhero
# TBD
brew cask install sequential
# TBD
brew cask install shortcat
# Silverlight video player by Microsoft.
brew cask install silverlight
# Skitch: Evernote annotation
# https://evernote.com/products/skitch
brew cask install skitch
# LICEcap: simple animated screen captures
# https://www.cockos.com/licecap/
brew cask install licecap
# TBD
brew cask install sleep-monitor
# Sophos anti virus
brew cask install sophos-anti-virus-home-edition
# TBD
brew cask install sourcetree
# TBD
brew cask install superduper
# Synergy screen sharing utility
brew cask install synergy
# TBD
brew cask install thisservice
# Thunderbird email client by Mozilla.
brew cask install thunderbird
# TBD
brew cask install transmit
# TBD
brew cask install todoist
# TBD
brew cask install todos
# Unison file synchronizer.
brew cask install unison
##
# Extras
#
# These are packages that we may want.
#
# If you want any of these, please let us know,
# or create a pull request for this repository.
#
# Applications that we want that are not on brew:
#
# * Backblaze
# * Kiwix
# * Sublime Text
# * SoapUI
#
# Applications that we want that we need to find:
#
# * Automator
# * Battery Health
# * Cloud
# * Coffitivity
# * Disk Diag
# * Docs for Xcode
# * DxO Perspective
# * Facebook
# * Font Book
# * Fotor
# * Garmin
# * Gmail
# * Image Capture
# * MailTab for Gmail
# * Memory Clean
# * MenuBar Stats
# * Microsoft Remote Desktop
# * Mint QuickView
# * Prepo
# * Screen Recorder Robot Lite
# * Stickies
# * Tab for Reddit
# * The Unarchiver
# * Time Machine
# * Twitter
# * VirtualDJ
# * Wunderlist
# * Xcode
# * xScan
#
# Apple built-in apps:
#
# * App Store
# * Apple Configurator
# * Calculator
# * Calendar
# * Chess
# * Contacts
# * DVD Player
# * Dashboard
# * Dictionary
# * FaceTime
# * Game Center
# * GarageBand
# * iBooks
# * iCloud
# * iMovie
# * iPhoto
# * iTunes
# * iWork
# * Keynote
# * Launchpad
# * Mail
# * Maps
# * Messages
# * Mission Control
# * Notes
# * Numbers
# * Pages
# * Photo Booth
# * Preview
# * QuickTime Player
# * Reminders
# * Safari
# * System Preferences