-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathBrewfile
141 lines (127 loc) · 2.38 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
# frozen_string_literal: true
hostname = `hostname -s`.strip
tap 'homebrew/cask'
tap 'homebrew/cask-drivers'
tap 'homebrew/cask-fonts'
tap 'homebrew/cask-versions'
tap 'homebrew/core'
tap 'homebrew/services'
tap 'drone/drone'
tap 'derailed/k9s'
# Build tools and libs
brew 'ack'
brew 'coreutils'
brew 'gettext', line: true
brew 'gmp'
brew 'libpqxx'
brew 'libyaml'
brew 'makedepend'
brew 'mysql-connector-c++'
brew 'nmap'
brew 'pkg-config'
brew 'readline'
brew 'tree'
brew 'watch'
brew 'wget'
brew 'aria2'
brew 'asdf'
brew 'atuin'
brew 'awscli'
brew 'bat'
brew 'blueutil'
brew 'diff-so-fancy'
brew 'direnv'
brew 'fd'
brew 'fish'
brew 'fzf'
brew 'gh'
brew 'git'
brew 'glances'
brew 'gnu-tar'
brew 'hey'
brew 'htop'
brew 'imagemagick'
brew 'iperf3'
brew 'jq'
brew 'jsonnet'
brew 'mackup'
brew 'mas'
brew 'openssl'
brew 'pv'
brew 'rcm'
brew 'rsync'
brew 'sleepwatcher', restart_service: true
brew 'starship'
brew 'tldr'
brew 'wifi-password'
brew 'yq'
brew 'zoxide'
# Kubernetes
brew 'helm'
brew 'kind'
brew 'kubectx'
brew 'kubernetes-cli'
brew 'kustomize'
brew 'minikube'
brew 'podman'
brew 'derailed/k9s/k9s'
cask '1password-cli'
cask '1password'
cask 'cloudflare-warp'
cask 'discord'
cask 'docker'
cask 'gitify'
cask 'google-chrome'
cask 'google-cloud-sdk'
cask 'iterm2'
cask 'karabiner-elements'
cask 'linear-linear'
cask 'notion'
cask 'obsidian'
cask 'raspberry-pi-imager'
cask 'raycast'
cask 'sequel-pro'
cask 'spotify'
cask 'trezor-suite'
cask 'visual-studio-code'
cask 'whatsapp'
cask 'zoom'
# Quicklook plugins
cask 'betterzip'
cask 'qlimagesize'
cask 'quicklook-csv'
cask 'quicklook-json'
# Fonts
cask 'font-fira-code'
cask 'font-fira-code-nerd-font'
mas 'Notability', id: 360593530
mas 'Slack', id: 803453959
mas 'Textual', id: 896450579
mas 'ToothFairy', id: 1191449274
mas 'XCode', id: 497799835
##############################
# Only for personal computer
if hostname == 'black-mac'
# 3d Printing
cask 'autodesk-fusion360'
cask 'prusaslicer'
cask 'ultimaker-cura'
# Audio & Music
cask 'ableton-live-lite'
cask 'spitfire-audio'
tap 'hannesbraun/homebrew-cask-audio'
cask 'dexed'
cask 'focusrite-control'
cask 'fogpad'
cask 'helm'
cask 'midi-monitor'
cask 'native-access'
cask 'surge-synthesizer'
cask 'sysex-librarian'
cask 'transformant'
cask 'valhallafreqecho'
cask 'valhallaspacemodulator'
cask 'valhallasupermassive'
cask 'vcv-rack'
mas 'Model D', id: 1339418001
end