-
Notifications
You must be signed in to change notification settings - Fork 4
/
min.Brewfile
314 lines (255 loc) · 5.78 KB
/
min.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
# -*- mode: ruby -*-
# vim: set ft=ruby :
###########################################################################
### Collect information on the current environment.
def is_arm?
!RUBY_PLATFORM.index("arm64e").nil?
end
###########################################################################
### Tap
tap 'homebrew/autoupdate'
tap 'homebrew/bundle'
tap 'homebrew/cask-fonts'
tap 'homebrew/cask-versions'
tap 'homebrew/command-not-found'
tap 'aws/tap'
tap 'blacktop/tap'
###########################################################################
### Dependencies
# Packages management
brew 'mas'
mas 'Xcode', id: 497799835
# Downloads
brew 'curl'
brew 'git'
brew 'git-lfs'
brew 'wget'
# Fonts
cask 'font-hackgen-nerd'
cask 'font-meslo-for-powerline'
# Shells
brew 'zsh'
brew 'zsh-completions'
# Programming
brew 'gawk'
brew 'gcc'
brew 'rust'
# Signature
brew 'unbound', restart_service: true
brew 'gnupg'
brew 'pinentry-mac'
# System
brew 'coreutils'
brew 'proctools'
###########################################################################
### No depended but high priorities
# Configuration tools
brew 'chezmoi'
brew 'mackup'
# Conversion for texts
brew 'jq'
# Development for Web
brew 'asdf'
brew 'mkcert'
brew 'nss'
cask 'firefox-esr'
# Development: for Mobile apps
# cask 'android-studio'
brew 'mono' unless is_arm? # ! x86_64?
# cask 'unity-hub', greedy: true
# Files
cask 'mysides'
# Shell
brew 'blacktop/tap/lporg'
cask 'powershell'
# Storages management
# cask 'adobe-creative-cloud', greedy: true
cask 'omnipresence'
# mas 'OneDrive', id: 823766827
# Tasks & Memos
mas 'OmniFocus 4', id: 1542143627
# Virtualizations
cask 'vagrant'
cask 'docker', greedy: true
brew 'whalebrew'
# mas 'Parallels Desktop', id: 1085114709
# cask 'parallels-virtualization-sdk'
###########################################################################
### Cask
# 3D
# cask 'blender'
# cask 'freecad'
# Audio & Broadcasting
# cask 'audio-hijack', greedy: true
# cask 'izotope-product-portal', greedy: true
# cask 'loopback', greedy: true
# cask 'obs', greedy: true
# cask 'restream-chat'
# cask 'sonic-visualiser'
# cask 'voicepeak'
# Authentication
cask 'keybase' unless is_arm? # Install from Mac App Store
# Development
# cask 'alcom', greedy: true
cask 'figma'
cask 'figma-agent'
cask 'react-native-debugger'
# Devices
# cask 'canon-mf-printer'
# Since it's troublesome to determine whether or not the Touch Bar is
# present, it's determined by whether or not the ARM64 arch is used.
cask 'haptic-touch-bar' unless is_arm?
cask 'karabiner-elements'
# cask 'logitech-firmwareupdatetool'
# cask 'logitech-g-hub'
# cask 'logitech-gaming-software'
# cask 'x-mirage'
# Documentations
cask 'chatgpt', greedy: true
# cask 'manta'
cask 'wkhtmltopdf'
# Files
# cask 'raspberry-pi-imager'
# Fonts
cask 'font-hackgen'
cask 'font-ibm-plex'
cask 'font-lato'
cask 'font-meslo-lg-nerd-font'
# Games
# cask 'minecraft', greedy: true
# cask 'steam', greedy: true
cask 'steamcmd'
# Messaging
# cask 'discord', greedy: true
# cask 'microsoft-teams', greedy: true
# cask 'skype'
# cask 'zoom', greedy: true
# Remote tools
cask 'amazon-workspaces'
cask 'ngrok'
cask 'openvpn-connect'
cask 'switchhosts'
# cask 'teamviewer'
cask 'vnc-viewer'
# Runtime
cask 'adoptopenjdk'
# Tasks & Memos
cask 'notion'
# Text editors
cask 'cursor', greedy: true
cask 'sublime-text'
cask 'visual-studio-code', greedy: true
# Virtualizations
# cask 'dosbox-x'
cask 'virtualbox' unless is_arm? # ! x86_64?
cask 'virtualbox-extension-pack' unless is_arm? # ! x86_64?
# Web browsers
cask 'chromium' unless is_arm? # ! x86_64?
cask 'google-chrome', greedy: true
cask 'insomnia', greedy: true
cask 'tor-browser'
###########################################################################
### Brew
# Benchmark
brew 'cloc'
brew 'fastfetch'
brew 'gotop'
brew 'htop'
# Conversion for binaries
brew 'ffmpeg'
brew 'imagemagick'
brew 'p7zip'
brew 'vips'
# Conversion for texts
brew 'groff'
brew 'nkf'
# Database
brew 'sqlite'
# Desktop
brew 'terminal-notifier'
# Development
brew 'antlr'
brew 'cmake'
brew 'lv2'
brew 'pict'
brew 'shellcheck'
brew 'vrc-get'
# Documentations
brew 'mdp'
brew 'pandoc'
# Files
brew 'bat'
brew 'broot'
brew 'fzf'
brew 'rename'
brew 'rsync'
brew 'subversion'
# Games & Jokes
brew 'gti'
brew 'nyancat'
brew 'sl'
# GitHub
brew 'gh'
brew 'gist'
brew 'git-delta'
brew 'gitlab-runner', restart_service: true
brew 'glab'
brew 'act'
# Remote tools
brew 'awscli'
brew 'aws-nuke'
brew 'aws-sam-cli'
brew 'inetutils' # includes the telnet
brew 'minicom'
brew 'mosh'
brew 'nmap'
brew 'openvpn'
brew 'scrcpy'
brew 'tor'
# Shell
brew 'bats-core'
brew 'term'
brew 'thefuck'
brew 'tmux'
# Text Browsing
brew 'links'
brew 'cheat'
brew 'tldr'
# Text editors
brew 'nano'
brew 'neovim'
brew 'vim'
###########################################################################
### Mas
# Benchmark
mas 'Cinebench', id: 1438772273
mas 'Disk Speed Test', id: 1480068668
# Development
mas 'Developer', id: 640199958
mas 'TestFlight', id: 899247664
# DTM / DTV
# mas 'GarageBand', id: 682658836
# mas 'iMovie', id: 408981434
# mas 'Logic Pro', id: 634148309
# Messaging / Social
# mas 'LINE', id: 539883307
# mas 'Messenger', id: 1480068668
mas 'Slack', id: 803453959
# mas "Twitter", id: 1482454543
# Office
mas 'Keynote', id: 409183694
# mas 'Microsoft Excel', id: 462058435
# mas 'Microsoft OneNote', id: 784801555
# mas 'Microsoft PowerPoint', id: 462062816
# mas "Microsoft To Do", id: 1274495053
# mas 'Microsoft Word', id: 462054704
mas 'Numbers', id: 409203825
mas 'Pages', id: 409201541
# Others
# mas 'Amazon Prime Video', id: 545519333
mas 'Grammarly: AI Writing Support', id: 1462114288
mas 'Grammarly for Safari', id: 1462114288
# mas 'Human Resource Machine', id: 1005728312
# mas 'Kindle', id: 405399194
# mas 'Microsoft Remote Desktop', id: 1295203466
# mas 'Remote Desktop', id: 409907375