-
Notifications
You must be signed in to change notification settings - Fork 3
/
Brewfile
646 lines (646 loc) · 18.5 KB
/
Brewfile
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
tap "cantino/mcfly"
tap "charmbracelet/tap"
tap "heroku/brew"
tap "homebrew/bundle"
tap "homebrew/cask-fonts"
tap "homebrew/services"
tap "macos-fuse-t/cask"
tap "sidneys/homebrew"
tap "zero-sh/tap"
# Simple, modern, secure file encryption
brew "age"
# General-purpose data compression with high compression ratio
brew "xz"
# New file format for still image compression
brew "jpeg-xl"
# Codec library for encoding and decoding AV1 video streams
brew "aom"
# Download with resuming and segmented downloading
brew "aria2"
# Automatic configure script builder
brew "autoconf"
# Generic library support script
brew "libtool"
# Manage compile and link flags for libraries
brew "pkg-config"
# Automated text file generator
brew "autogen"
# Tool for generating GNU Standards-compliant Makefiles
brew "automake"
# Clone of cat(1) with syntax highlighting and Git integration
brew "bat"
# Yet another cross-platform graphical process/system monitor
brew "bottom"
# New way to see and navigate directory trees
brew "broot"
# Extract files from Microsoft cabinet files
brew "cabextract"
# Interpreted, interactive, object-oriented programming language
brew "[email protected]"
# Core application library for C
brew "glib"
# X.Org: Core X11 protocol client library
brew "libx11"
# Vector graphics library with cross-device output support
brew "cairo"
# CD/DVD/Blu-ray premastering and recording software
brew "cdrtools"
# CHEss OPponent Simulator
brew "cheops"
# Cloudflare Tunnel client (formerly Argo Tunnel)
brew "cloudflared"
# Cross-platform make
brew "cmake"
# GNU File, Shell, and Text utilities
brew "coreutils"
# Get a file from an HTTP, HTTPS or FTP server
brew "curl"
# Digital camera RAW photo decoding software
brew "dcraw"
# Good-lookin' diffs with diff-highlight and more
brew "diff-so-fancy"
# In-depth comparison of files, archives, and directories
brew "diffoscope"
# File comparison utilities
brew "diffutils"
# Command-line DNS client
brew "dog"
# Disk Usage/Free Utility - a better 'df' alternative
brew "duf"
# Interactive program to find and remove duplicate files
brew "dupseek"
# More intuitive version of du in rust
brew "dust"
# Perl lib for reading and writing EXIF metadata
brew "exiftool"
# C library of Git core methods that is re-entrant and linkable
brew "libgit2"
# Modern, maintained replacement for ls
brew "eza"
# Efficient Duplicate File Finder
brew "fclones"
# Simple, fast and user-friendly alternative to find
brew "fd"
# Identify or delete duplicate files
brew "fdupes"
# Ogg Bitstream Library
brew "libogg"
# Free lossless audio codec
brew "flac"
# Validating, recursive, caching DNS resolver
brew "unbound"
# GNU Transport Layer Security (TLS) Library
brew "gnutls"
# OpenType text shaping engine
brew "harfbuzz"
# Subtitle renderer for the ASS/SSA subtitle format
brew "libass"
# Vorbis General Audio Compression Codec
brew "libvorbis"
# MP3 player for Linux and UNIX
brew "mpg123"
# Audio codec
brew "opus"
# Framework for layout and rendering of i18n text
brew "pango"
# OCR (Optical Character Recognition) engine
brew "tesseract"
# Play, record, convert, and stream audio and video
brew "ffmpeg"
# Process Management Interface for HPC environments
brew "pmix"
# High performance message passing library
brew "open-mpi"
# Collection of GNU find, xargs, and locate
brew "findutils"
# Command-line tools for fly.io services
brew "flyctl"
# Command-line outline and bitmap font editor/converter
brew "fontforge"
# Platform built on V8 to build network applications
brew "node"
# Terminal JSON viewer
brew "fx"
# Command-line fuzzy finder written in Go
brew "fzf"
# Google Drive CLI Client
brew "gdrive"
# GitHub command-line tool
brew "gh"
# Interpreter for PostScript and PDF
brew "ghostscript"
# Distributed revision control system
brew "git"
# Syntax-highlighting pager for git and diff output
brew "git-delta"
# Git extension for versioning large files
brew "git-lfs"
# Render markdown on the CLI
brew "glow"
# Multimedia framework for research and academic purposes
brew "gpac"
# GNU grep, egrep and fgrep
brew "grep"
# Open-source video transcoder available for Linux, Mac, and Windows
brew "handbrake", link: false
# Improved top (interactive process viewer)
brew "htop"
# CLI tool for sr.ht
brew "hut"
# ISO/IEC 23008-12:2017 HEIF file format decoder and encoder
brew "libheif"
# Tools and libraries to manipulate images in many formats
brew "imagemagick"
# Duplicate file finder and an enhanced fork of 'fdupes'
brew "jdupes"
# Lightweight and flexible command-line JSON processor
brew "jq"
# Kubernetes command-line interface
brew "kubernetes-cli"
# Assuan IPC Library
brew "libassuan"
# Shared library for mediainfo
brew "libmediainfo"
# Postgres C API library
brew "libpq"
# Next-gen compiler infrastructure
brew "llvm"
# Friendly wrapper for launchctl
brew "lunchy"
# Text-based web browser
brew "lynx"
# Mac App Store command-line interface
brew "mas"
# Unified display of technical and tag data for audio/video
brew "media-info"
# Free, open source voxel game engine and game
brew "minetest"
# Polyglot runtime manager (asdf rust clone)
brew "mise"
# NCurses Disk Usage
brew "ncdu"
# Netlify command-line tool
brew "netlify-cli"
# Port scanning utility for large networks
brew "nmap"
# Tiny, lightning fast, feature-packed file manager
brew "nnn"
# Optimized BLAS library
brew "openblas"
# Package for scientific computing with Python
brew "numpy"
# Open Visual Inference And Optimization toolkit for AI inference
brew "openvino"
# Highly capable, feature-rich programming language
brew "perl"
# Pinentry for GPG on Mac
brew "pinentry-mac"
# Object-relational database system
brew "postgresql@14"
# Object-relational database system
brew "postgresql@15", restart_service: true
# Modern replacement for ps written by Rust
brew "procs"
# Protocol buffers (Google's data interchange format)
brew "protobuf"
# Monitor data's progress through a pipe
brew "pv"
# Interpreted, interactive, object-oriented programming language
brew "[email protected]"
# Interpreted, interactive, object-oriented programming language
brew "[email protected]"
# Install various Ruby versions and implementations
brew "ruby-build"
# Ruby version manager
brew "rbenv"
# Rsync for cloud storage
brew "rclone"
# RC file (dotfile) management
brew "rcm"
# Find duplicate files based on content (NOT file names)
brew "rdfind"
# Persistent key-value database, with built-in net interface
brew "redis", restart_service: true
# Search tool like grep and The Silver Searcher
brew "ripgrep"
# Utility that provides fast incremental file transfer
brew "rsync"
# SOund eXchange: universal sound sample translator
brew "sox"
# Zsh prompt for Astronauts
brew "spaceship"
# Command-line interface for https://speedtest.net bandwidth tests
brew "speedtest-cli"
# Strong open-source chess engine
brew "stockfish"
# User interface to the TELNET protocol
brew "telnet"
# Powerful free data recovery utility
brew "testdisk"
# Code-search similar to ack
brew "the_silver_searcher"
# Simplified and community-driven man pages
brew "tldr"
# Display directories as trees (with optional color/HTML output)
brew "tree"
# Minimal zsh prompt
brew "typewritten"
# CLI time zone visualizer
brew "tz"
# Bi-directional conversion between UTF-8 and various ASCII flavors
brew "uni2ascii"
# Vi 'workalike' with many additional features
brew "vim"
# Wave-to-notes transcriber
brew "waon"
# Watch files and take action when they change
brew "watchman"
# Internet file retriever
brew "wget"
# Library to create, extract, and modify Windows Imaging files
brew "wimlib"
# Download YouTube videos from the command-line
brew "youtube-dl"
# Feature-rich command-line audio/video downloader
brew "yt-dlp"
# General-purpose lossless data-compression library
brew "zlib"
# Shell extension to navigate your filesystem faster
brew "zoxide"
# Additional completion definitions for zsh
brew "zsh-completions"
# The Charm Tool and Library 🌟
brew "charmbracelet/tap/charm"
# Backup and restore Ed25519 SSH keys with seed words
brew "charmbracelet/tap/melt"
# A personal key value store 🛼
brew "charmbracelet/tap/skate"
# Everything you need to get started with Heroku
brew "heroku/brew/heroku"
# Small tool to set macOS user defaults from a YAML file
brew "zero-sh/tap/apply-user-defaults"
# Password manager that keeps all passwords secure behind one password
cask "1password"
# Command-line interface for 1Password
cask "1password-cli"
# Watch local content on Apple TV and Chromecast
cask "airflow"
# Application uninstaller
cask "appcleaner"
# Multi-track audio editor and recorder
cask "audacity"
# Universal chat app powered by Matrix
cask "beeper"
# Desktop password and login vault
cask "bitwarden"
# 3D creation suite
cask "blender"
# Screen capturing tool
cask "cleanshot"
# Workflow enhancements for Final Cut Pro
cask "commandpost"
# Multi-platform client-side cloud file encryption tool
cask "cryptomator"
# Server and cloud storage browser
cask "cyberduck"
# Disk space visualiser
cask "daisydisk"
# Run Stable Diffusion locally
cask "diffusionbee"
# Voice and text chat software
cask "discord"
# App to build and share containerised applications and microservices
cask "docker"
# PCB design tool
cask "easyeda"
# Matrix collaboration client
cask "element"
# Collaborative team software
cask "figma"
# Web browser
cask "firefox"
cask "font-anonymice-nerd-font"
cask "font-anonymous-pro"
cask "font-barlow"
cask "font-blex-mono-nerd-font"
cask "font-cascadia-code"
cask "font-cascadia-mono"
cask "font-caskaydia-cove-nerd-font"
cask "font-chivo"
cask "font-code-new-roman-nerd-font"
cask "font-cousine"
cask "font-cousine-nerd-font"
cask "font-dm-mono"
cask "font-droid-sans-mono-nerd-font"
cask "font-epilogue"
cask "font-fira-code"
cask "font-fira-code-nerd-font"
cask "font-fira-mono"
cask "font-fira-mono-nerd-font"
cask "font-fira-sans"
cask "font-flow-block"
cask "font-flow-circular"
cask "font-flow-rounded"
cask "font-hack"
cask "font-hack-nerd-font"
cask "font-hubot-sans"
cask "font-ia-writer-duo"
cask "font-ia-writer-mono"
cask "font-ia-writer-quattro"
cask "font-ibm-plex"
cask "font-ibm-plex-mono"
cask "font-im-writing-nerd-font"
cask "font-inconsolata"
cask "font-inconsolata-nerd-font"
cask "font-jetbrains-mono"
cask "font-jetbrains-mono-nerd-font"
cask "font-libre-baskerville"
cask "font-libre-bodoni"
cask "font-libre-caslon-display"
cask "font-libre-caslon-text"
cask "font-libre-franklin"
cask "font-lilex"
cask "font-lilex-nerd-font"
cask "font-mona-sans"
cask "font-monaspace"
cask "font-monaspace-nerd-font"
cask "font-noto-mono"
cask "font-noto-nerd-font"
cask "font-noto-sans"
cask "font-noto-sans-mono"
cask "font-nova-mono"
cask "font-open-sans"
cask "font-overpass"
cask "font-overpass-nerd-font"
cask "font-plus-jakarta-sans"
cask "font-pt-sans"
cask "font-pt-serif"
cask "font-quattrocento-sans"
cask "font-recursive"
cask "font-recursive-code"
cask "font-red-hat-display"
cask "font-red-hat-mono"
cask "font-red-hat-text"
cask "font-roboto-mono"
cask "font-roboto-mono-nerd-font"
cask "font-sauce-code-pro-nerd-font"
cask "font-sf-mono"
cask "font-source-code-pro"
cask "font-source-sans-3"
cask "font-space-grotesk"
cask "font-space-mono"
cask "font-space-mono-nerd-font"
cask "font-victor-mono"
cask "font-victor-mono-nerd-font"
cask "font-work-sans"
# Font editor and converter for outline and bitmap fonts
cask "fontforge"
# LibFUSE implementation that doesn't use kernel extensions
cask "fuse-t"
# SSHFS implementation based on FUSE-T
cask "fuse-t-sshfs"
# Hosts file editor/manager
cask "gas-mask"
# Desktop client for GitHub repositories
cask "github"
# Game development engine
cask "godot"
# Web browser
cask "google-chrome"
# Set of tools to manage resources and applications hosted on Google Cloud
cask "google-cloud-sdk"
# Client for the Google Drive storage service
cask "google-drive"
# Tools to protect your emails and files
cask "gpg-suite"
# Open-source video transcoder
cask "handbrake"
# Hex editor focussing on speed
cask "hex-fiend"
# Tool to optimise images to a smaller size
cask "imageoptim"
# Vector graphics editor
cask "inkscape"
# Terminal emulator as alternative to Apple's Terminal app
cask "iterm2"
# Control computers fast and securely from anywhere
cask "jollysfastvnc"
# Keyboard customiser
cask "karabiner-elements"
# Desktop shield and keystroke interceptor
cask "keyboard-cleaner"
# Electronics design automation suite
cask "kicad"
# CAD application
cask "librecad"
# EDA software to develop printed circuit boards
cask "librepcb"
# File system integration
cask "macfuse"
# Native desktop app for Messenger (formerly Facebook Messenger)
cask "messenger"
# Minimal installer for conda
cask "miniconda"
# Intercept, modify, replay, save HTTP/S traffic
cask "mitmproxy"
# Open-source DJ software
cask "mixxx"
# Mounts servers and cloud storages as a disk on the desktop
cask "mountain-duck"
# Open-source music notation software
cask "musescore"
# Administration tool for Native Instruments products
cask "native-access"
# App to write, plan, collaborate, and get organised
cask "notion"
# Calendar for professionals and teams
cask "notion-calendar"
# Native code editor
cask "nova"
# Knowledge base that works on top of a local folder of plain text Markdown files
cask "obsidian"
# Audiobook manager for Audible users
cask "openaudible"
# ZFS driver and utilities
cask "openzfs"
# MIDI and OSC Monitor
cask "protokol"
# Client for Proton Drive
cask "proton-drive"
# Bridges Proton Mail to email clients supporting IMAP and SMTP protocols
cask "protonmail-bridge"
# VPN client focusing on security
cask "protonvpn"
# HTTP debugging proxy
cask "proxyman"
# G-code generator for 3D printers (RepRap, Makerbot, Ultimaker etc.)
cask "prusaslicer"
# Toolbox companion for QMK Firmware
cask "qmk-toolbox"
# Imaging utility to install operating systems to a microSD card
cask "raspberry-pi-imager"
# Control your tools with a few keystrokes
cask "raycast"
# Move and resize windows using keyboard shortcuts or snap areas
cask "rectangle"
# Free Dj app to prepare and manage your music files
cask "rekordbox"
# GUI for rsync
cask "rsyncosx"
# MySQL/MariaDB database management
cask "sequel-ace"
# Instant messaging application focusing on security
cask "signal"
# Team communication and collaboration software
cask "slack"
# 3D printing software
cask "snapmaker-luban"
# Code-based music creation and performance tool
cask "sonic-pi"
# Visualisation, analysis, and annotation of music audio recordings
cask "sonic-visualiser"
# Music streaming service
cask "spotify"
# Video game digital distribution service
cask "steam"
# Tool to manage Synology NAS's across a LAN
cask "synologyassistant"
# Messaging app with a focus on speed and security
cask "telegram"
# Unpacks archive files
cask "the-unarchiver"
# Helper application for Things
cask "thingsmacsandboxhelper"
# Customizable email client
cask "thunderbird"
# Web browser focusing on security
cask "tor-browser"
# MIDI and OSC Controller Software
cask "touchosc"
# Open-source BitTorrent client
cask "transmission"
# 3D printer and slicing GUI
cask "ultimaker-cura"
# Virtual machines UI using QEMU
cask "utm"
# Development environment
cask "vagrant"
# Open-source code editor
cask "visual-studio-code"
# Multimedia player
cask "vlc"
# Remote desktop application focusing on security
cask "vnc-viewer"
# Native desktop client for WhatsApp
cask "whatsapp"
# Notetaking tool
cask "workflowy"
# Multi-platform graphical interface for official Nmap Security Scanner
cask "zenmap"
# Video communication and virtual meeting platform
cask "zoom"
mas "1Password for Safari", id: 1569813296
mas "Amphetamine", id: 937984704
mas "Darkroom", id: 953286746
mas "Disk Speed Test", id: 425264550
mas "djay Pro", id: 450527929
mas "GoPro Quik", id: 561350520
mas "HazeOver", id: 430798174
mas "iA Writer", id: 775737590
mas "iMovie", id: 408981434
mas "Keynote", id: 409183694
mas "Numbers", id: 409203825
mas "Pages", id: 409201541
mas "Things", id: 904280696
vscode "1yib.rust-bundle"
vscode "ahmadawais.shades-of-purple"
vscode "alefragnani.project-manager"
vscode "aminer.codegeex"
vscode "astro-build.astro-vscode"
vscode "austenc.tailwind-docs"
vscode "basys.vscode-basys"
vscode "bibhasdn.unique-lines"
vscode "bradlc.vscode-tailwindcss"
vscode "bung87.rails"
vscode "bung87.vscode-gemfile"
vscode "ccimage.jsonviewer"
vscode "cesium.gltf-vscode"
vscode "csstools.postcss"
vscode "dart-code.dart-code"
vscode "dart-code.flutter"
vscode "dbaeumer.vscode-eslint"
vscode "dnicolson.binary-plist"
vscode "dotjoshjohnson.xml"
vscode "doublebot.doublebot"
vscode "dracula-theme.theme-dracula"
vscode "dtoplak.vscode-glsllint"
vscode "dtsvet.vscode-wasm"
vscode "dustypomerleau.rust-syntax"
vscode "eamodio.gitlens"
vscode "emmanuelbeziat.vscode-great-icons"
vscode "enkia.tokyo-night"
vscode "equinusocio.vsc-material-theme"
vscode "equinusocio.vsc-material-theme-icons"
vscode "esbenp.prettier-vscode"
vscode "extemporelang.vscode-extempore"
vscode "fill-labs.dependi"
vscode "foxundermoon.shell-format"
vscode "gamunu.vscode-yarn"
vscode "github.copilot"
vscode "github.copilot-chat"
vscode "github.vscode-github-actions"
vscode "github.vscode-pull-request-github"
vscode "grapecity.gc-excelviewer"
vscode "gulajavaministudio.mayukaithemevsc"
vscode "hbenl.vscode-test-explorer"
vscode "hsnazar.hyper-term-theme"
vscode "idealley.gql"
vscode "janisdd.vscode-edit-csv"
vscode "jscearcy.rust-doc-viewer"
vscode "kumar-harsh.graphql-for-vscode"
vscode "l13rary.l13-diff"
vscode "macieklad.tailwind-sass-syntax"
vscode "mactkg.sonic-pi"
vscode "mechatroner.rainbow-csv"
vscode "mike-co.import-sorter"
vscode "mikestead.dotenv"
vscode "moshfeu.compare-folders"
vscode "ms-azuretools.vscode-docker"
vscode "ms-kubernetes-tools.vscode-kubernetes-tools"
vscode "ms-python.debugpy"
vscode "ms-python.python"
vscode "ms-python.vscode-pylance"
vscode "ms-toolsai.jupyter"
vscode "ms-toolsai.jupyter-keymap"
vscode "ms-toolsai.jupyter-renderers"
vscode "ms-toolsai.vscode-jupyter-cell-tags"
vscode "ms-toolsai.vscode-jupyter-slideshow"
vscode "ms-vscode-remote.remote-containers"
vscode "ms-vscode.test-adapter-converter"
vscode "ms-vscode.vscode-speech"
vscode "octref.vetur"
vscode "phoenisx.cssvar"
vscode "pkief.material-icon-theme"
vscode "pkief.material-product-icons"
vscode "pkosta2005.heroku-command"
vscode "prisma.prisma"
vscode "randomfractalsinc.vscode-data-preview"
vscode "redhat.vscode-yaml"
vscode "robbowen.synthwave-vscode"
vscode "ronnidc.nunjucks"
vscode "rust-lang.rust-analyzer"
vscode "rvest.vs-code-prettier-eslint"
vscode "shopify.ruby-lsp"
vscode "sianglim.slim"
vscode "sissel.shopify-liquid"
vscode "slevesque.shader"
vscode "sourcegraph.cody-ai"
vscode "svelte.svelte-vscode"
vscode "swellaby.vscode-rust-test-adapter"
vscode "tamasfe.even-better-toml"
vscode "tidalcycles.vscode-tidalcycles"
vscode "tobiah.language-pde"
vscode "tyriar.sort-lines"
vscode "vscodevim.vim"
vscode "vue.volar"
vscode "yzhang.markdown-all-in-one"