├── Brewfile ├── Brewfile.lock.json └── README.md /Brewfile: -------------------------------------------------------------------------------- 1 | tap "homebrew/bundle" 2 | tap "homebrew/cask" 3 | tap "homebrew/core" 4 | tap "johanhaleby/kubetail" 5 | cask "alfred" 6 | cask "docker" 7 | cask "firefox" 8 | cask "google-chrome" 9 | cask "grammarly" 10 | cask "iterm2" 11 | cask "slack" 12 | cask "rectangle" 13 | cask "telegram" 14 | cask "vanilla" 15 | cask "visual-studio-code" 16 | cask "whatsapp" 17 | cask "gpg-suite" 18 | cask "keybase" 19 | cask "transmission" 20 | cask "spotify" 21 | cask "flycut" 22 | cask "insomnia" 23 | cask "rocket-chat" 24 | cask "obs" 25 | cask "virtualbox" 26 | cask "discord" 27 | cask "dropbox" 28 | cask "sqlectron" 29 | brew "kubernetes-cli" 30 | brew "jq" 31 | brew "nmap" 32 | brew "openssl" 33 | brew "watch" 34 | brew "derailed/popeye/popeye" 35 | brew "stern" 36 | brew "kubectx" 37 | brew "docker-compose" 38 | brew "rke" 39 | brew "helm" 40 | brew "git-lfs" 41 | brew "velero" 42 | brew "kubetail" 43 | brew "k9s" 44 | brew "kubespy" 45 | -------------------------------------------------------------------------------- /Brewfile.lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "entries": { 3 | "tap": { 4 | "homebrew/bundle": { 5 | "revision": "5b6fa2f5fe5df3ff2cc5436045e1934b9be4ac13" 6 | }, 7 | "homebrew/cask": { 8 | "revision": "052d52f9a86e1c4d1f6b70af80f7fcaa811d3aa6" 9 | }, 10 | "homebrew/core": { 11 | "revision": "87e7f244b137f8a69b72253c612f12e2ef847b35" 12 | } 13 | }, 14 | "cask": { 15 | "alfred": { 16 | "version": "4.3.4,1229", 17 | "options": { 18 | "full_name": "alfred" 19 | } 20 | }, 21 | "docker": { 22 | "version": "3.4.0,65384", 23 | "options": { 24 | "full_name": "docker" 25 | } 26 | }, 27 | "firefox": { 28 | "version": "89.0", 29 | "options": { 30 | "full_name": "firefox" 31 | } 32 | }, 33 | "google-chrome": { 34 | "version": "91.0.4472.101", 35 | "options": { 36 | "full_name": "google-chrome" 37 | } 38 | }, 39 | "grammarly": { 40 | "version": "latest", 41 | "options": { 42 | "full_name": "grammarly" 43 | } 44 | }, 45 | "iterm2": { 46 | "version": "3.4.8", 47 | "options": { 48 | "full_name": "iterm2" 49 | } 50 | }, 51 | "slack": { 52 | "version": "4.17.0", 53 | "options": { 54 | "full_name": "slack" 55 | } 56 | }, 57 | "spectacle": { 58 | "version": "1.2,672", 59 | "options": { 60 | "full_name": "spectacle" 61 | } 62 | }, 63 | "telegram": { 64 | "version": "7.7.215786", 65 | "options": { 66 | "full_name": "telegram" 67 | } 68 | }, 69 | "vanilla": { 70 | "version": "2.0.2,48", 71 | "options": { 72 | "full_name": "vanilla" 73 | } 74 | }, 75 | "visual-studio-code": { 76 | "version": "1.56.2", 77 | "options": { 78 | "full_name": "visual-studio-code" 79 | } 80 | }, 81 | "whatsapp": { 82 | "version": "2.2121.6", 83 | "options": { 84 | "full_name": "whatsapp" 85 | } 86 | }, 87 | "gpg-suite": { 88 | "version": "2021.1,105", 89 | "options": { 90 | "full_name": "gpg-suite" 91 | } 92 | }, 93 | "keybase": { 94 | "version": "5.6.2,20210202191343:d72cc00cd3", 95 | "options": { 96 | "full_name": "keybase" 97 | } 98 | }, 99 | "transmission": { 100 | "version": "3.00", 101 | "options": { 102 | "full_name": "transmission" 103 | } 104 | }, 105 | "spotify": { 106 | "version": "1.1.60.672.g6ad9c215,1.1.60.672.g6ad9c215-15", 107 | "options": { 108 | "full_name": "spotify" 109 | } 110 | }, 111 | "flycut": { 112 | "version": "1.9.6", 113 | "options": { 114 | "full_name": "flycut" 115 | } 116 | }, 117 | "insomnia": { 118 | "version": "2021.3.0", 119 | "options": { 120 | "full_name": "insomnia" 121 | } 122 | }, 123 | "rocket-chat": { 124 | "version": "3.2.2", 125 | "options": { 126 | "full_name": "rocket-chat" 127 | } 128 | }, 129 | "obs": { 130 | "version": "27.0", 131 | "options": { 132 | "full_name": "obs" 133 | } 134 | }, 135 | "virtualbox": { 136 | "version": "6.1.22,144080", 137 | "options": { 138 | "full_name": "virtualbox" 139 | } 140 | }, 141 | "discord": { 142 | "version": "0.0.263", 143 | "options": { 144 | "full_name": "discord" 145 | } 146 | }, 147 | "dropbox": { 148 | "version": "123.4.4832", 149 | "options": { 150 | "full_name": "dropbox" 151 | } 152 | }, 153 | "sqlectron": { 154 | "version": "1.36.0", 155 | "options": { 156 | "full_name": "sqlectron" 157 | } 158 | } 159 | }, 160 | "brew": { 161 | "kubernetes-cli": { 162 | "version": "1.21.1", 163 | "bottle": { 164 | "rebuild": 0, 165 | "root_url": "https://ghcr.io/v2/homebrew/core", 166 | "files": { 167 | "arm64_big_sur": { 168 | "cellar": ":any_skip_relocation", 169 | "url": "https://ghcr.io/v2/homebrew/core/kubernetes-cli/blobs/sha256:d6d7f52dddb3c2e7bd357014e353941fe904c050405d5a131531a95606625d48", 170 | "sha256": "d6d7f52dddb3c2e7bd357014e353941fe904c050405d5a131531a95606625d48" 171 | }, 172 | "big_sur": { 173 | "cellar": ":any_skip_relocation", 174 | "url": "https://ghcr.io/v2/homebrew/core/kubernetes-cli/blobs/sha256:ae61a1b396a5ee1b8559f21405acfd891ae7c33e08b42b5e04cc7d3ad5a8f4da", 175 | "sha256": "ae61a1b396a5ee1b8559f21405acfd891ae7c33e08b42b5e04cc7d3ad5a8f4da" 176 | }, 177 | "catalina": { 178 | "cellar": ":any_skip_relocation", 179 | "url": "https://ghcr.io/v2/homebrew/core/kubernetes-cli/blobs/sha256:88e926b2baf29ebee630b98f128b0bebac35dcbefabea4921fbf19b5ccf40602", 180 | "sha256": "88e926b2baf29ebee630b98f128b0bebac35dcbefabea4921fbf19b5ccf40602" 181 | }, 182 | "mojave": { 183 | "cellar": ":any_skip_relocation", 184 | "url": "https://ghcr.io/v2/homebrew/core/kubernetes-cli/blobs/sha256:02989940e3a8622495e5a00c3c1f766e5563a899c5f5bcc36d10f23b2e08a79a", 185 | "sha256": "02989940e3a8622495e5a00c3c1f766e5563a899c5f5bcc36d10f23b2e08a79a" 186 | } 187 | } 188 | } 189 | }, 190 | "jq": { 191 | "version": "1.6", 192 | "bottle": { 193 | "rebuild": 1, 194 | "root_url": "https://ghcr.io/v2/homebrew/core", 195 | "files": { 196 | "arm64_big_sur": { 197 | "cellar": ":any", 198 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:674b3ae41c399f1e8e44c271b0e6909babff9fcd2e04a2127d25e2407ea4dd33", 199 | "sha256": "674b3ae41c399f1e8e44c271b0e6909babff9fcd2e04a2127d25e2407ea4dd33" 200 | }, 201 | "big_sur": { 202 | "cellar": ":any", 203 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:bf0f8577632af7b878b6425476f5b1ab9c3bf66d65affb0c455048a173a0b6bf", 204 | "sha256": "bf0f8577632af7b878b6425476f5b1ab9c3bf66d65affb0c455048a173a0b6bf" 205 | }, 206 | "catalina": { 207 | "cellar": ":any", 208 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:820a3c85fcbb63088b160c7edf125d7e55fc2c5c1d51569304499c9cc4b89ce8", 209 | "sha256": "820a3c85fcbb63088b160c7edf125d7e55fc2c5c1d51569304499c9cc4b89ce8" 210 | }, 211 | "mojave": { 212 | "cellar": ":any", 213 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:71f0e76c5b22e5088426c971d5e795fe67abee7af6c2c4ae0cf4c0eb98ed21ff", 214 | "sha256": "71f0e76c5b22e5088426c971d5e795fe67abee7af6c2c4ae0cf4c0eb98ed21ff" 215 | }, 216 | "high_sierra": { 217 | "cellar": ":any", 218 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:dffcffa4ea13e8f0f2b45c5121e529077e135ae9a47254c32182231662ee9b72", 219 | "sha256": "dffcffa4ea13e8f0f2b45c5121e529077e135ae9a47254c32182231662ee9b72" 220 | }, 221 | "sierra": { 222 | "cellar": ":any", 223 | "url": "https://ghcr.io/v2/homebrew/core/jq/blobs/sha256:bb4d19dc026c2d72c53eed78eaa0ab982e9fcad2cd2acc6d13e7a12ff658e877", 224 | "sha256": "bb4d19dc026c2d72c53eed78eaa0ab982e9fcad2cd2acc6d13e7a12ff658e877" 225 | } 226 | } 227 | } 228 | }, 229 | "nmap": { 230 | "version": "7.91", 231 | "bottle": { 232 | "rebuild": 0, 233 | "root_url": "https://ghcr.io/v2/homebrew/core", 234 | "files": { 235 | "arm64_big_sur": { 236 | "cellar": "/opt/homebrew/Cellar", 237 | "url": "https://ghcr.io/v2/homebrew/core/nmap/blobs/sha256:c4825eebb0c857ba379710908a624e3564662bd808fad068a072ae7a90b33ac7", 238 | "sha256": "c4825eebb0c857ba379710908a624e3564662bd808fad068a072ae7a90b33ac7" 239 | }, 240 | "big_sur": { 241 | "cellar": "/usr/local/Cellar", 242 | "url": "https://ghcr.io/v2/homebrew/core/nmap/blobs/sha256:cb8315d8d7913081b82c5fd23af831e4d35b2d87581bfa395d6e4ff30b8d45fd", 243 | "sha256": "cb8315d8d7913081b82c5fd23af831e4d35b2d87581bfa395d6e4ff30b8d45fd" 244 | }, 245 | "catalina": { 246 | "cellar": "/usr/local/Cellar", 247 | "url": "https://ghcr.io/v2/homebrew/core/nmap/blobs/sha256:5592fb8c2fe633a6339ee61901122c075a4b44c002e2887bddfb2c4b3aa2885f", 248 | "sha256": "5592fb8c2fe633a6339ee61901122c075a4b44c002e2887bddfb2c4b3aa2885f" 249 | }, 250 | "mojave": { 251 | "cellar": "/usr/local/Cellar", 252 | "url": "https://ghcr.io/v2/homebrew/core/nmap/blobs/sha256:ba808d31033d996488fdf56664de1cf424fc942db794ab7030d40a1caad93aa8", 253 | "sha256": "ba808d31033d996488fdf56664de1cf424fc942db794ab7030d40a1caad93aa8" 254 | }, 255 | "high_sierra": { 256 | "cellar": "/usr/local/Cellar", 257 | "url": "https://ghcr.io/v2/homebrew/core/nmap/blobs/sha256:b9a5b9d54fb0af76b1ce343e94f142b3421309fbeb81078d73e41bc2a9d862ea", 258 | "sha256": "b9a5b9d54fb0af76b1ce343e94f142b3421309fbeb81078d73e41bc2a9d862ea" 259 | } 260 | } 261 | } 262 | }, 263 | "openssl": { 264 | "version": "1.1.1k", 265 | "bottle": { 266 | "rebuild": 0, 267 | "root_url": "https://ghcr.io/v2/homebrew/core", 268 | "files": { 269 | "arm64_big_sur": { 270 | "cellar": "/opt/homebrew/Cellar", 271 | "url": "https://ghcr.io/v2/homebrew/core/openssl/1.1/blobs/sha256:0a75e0f116c0653bc7a2b422e5dc500e7e51557303aa4fca9c1a28786189c1da", 272 | "sha256": "0a75e0f116c0653bc7a2b422e5dc500e7e51557303aa4fca9c1a28786189c1da" 273 | }, 274 | "big_sur": { 275 | "cellar": "/usr/local/Cellar", 276 | "url": "https://ghcr.io/v2/homebrew/core/openssl/1.1/blobs/sha256:17d94c51ddfa8364baed5f3a754063e1ca75f807194f68d0b976619cf4e69c1a", 277 | "sha256": "17d94c51ddfa8364baed5f3a754063e1ca75f807194f68d0b976619cf4e69c1a" 278 | }, 279 | "catalina": { 280 | "cellar": "/usr/local/Cellar", 281 | "url": "https://ghcr.io/v2/homebrew/core/openssl/1.1/blobs/sha256:cb610ecdda346011031b890d7b7c6e1942d7fc08cf083b74f148ec7ffed8c7e1", 282 | "sha256": "cb610ecdda346011031b890d7b7c6e1942d7fc08cf083b74f148ec7ffed8c7e1" 283 | }, 284 | "mojave": { 285 | "cellar": "/usr/local/Cellar", 286 | "url": "https://ghcr.io/v2/homebrew/core/openssl/1.1/blobs/sha256:7928c80c309c6ece50b1c0d968a1e54011088cc896d26aa511249978a246bd50", 287 | "sha256": "7928c80c309c6ece50b1c0d968a1e54011088cc896d26aa511249978a246bd50" 288 | } 289 | } 290 | } 291 | }, 292 | "watch": { 293 | "version": "3.3.17", 294 | "bottle": { 295 | "rebuild": 0, 296 | "root_url": "https://ghcr.io/v2/homebrew/core", 297 | "files": { 298 | "arm64_big_sur": { 299 | "cellar": ":any", 300 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:45b90fbbda918d2c87ef6ccc29f1d931cbd0a490f2b1d599444591aae04a3cb0", 301 | "sha256": "45b90fbbda918d2c87ef6ccc29f1d931cbd0a490f2b1d599444591aae04a3cb0" 302 | }, 303 | "big_sur": { 304 | "cellar": ":any", 305 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:251b920890874ad798cf01c4c52564c720f785ce8184ae41181654b8f65e592b", 306 | "sha256": "251b920890874ad798cf01c4c52564c720f785ce8184ae41181654b8f65e592b" 307 | }, 308 | "catalina": { 309 | "cellar": ":any", 310 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:05698a04a502ac32c97e0de0d9f00ac7c7450afd5d42b85d8ce1cd55d010fff3", 311 | "sha256": "05698a04a502ac32c97e0de0d9f00ac7c7450afd5d42b85d8ce1cd55d010fff3" 312 | }, 313 | "mojave": { 314 | "cellar": ":any", 315 | "url": "https://ghcr.io/v2/homebrew/core/watch/blobs/sha256:d2ce790ff9e073d04615051cd94dce4e06d37993de21894a64d4a23b7dfe5ea5", 316 | "sha256": "d2ce790ff9e073d04615051cd94dce4e06d37993de21894a64d4a23b7dfe5ea5" 317 | } 318 | } 319 | } 320 | }, 321 | "derailed/popeye/popeye": { 322 | "version": "0.9.2", 323 | "bottle": false 324 | }, 325 | "kube-ps1": { 326 | "version": "0.7.0", 327 | "bottle": false 328 | }, 329 | "stern": { 330 | "version": "1.18.0", 331 | "bottle": { 332 | "rebuild": 0, 333 | "root_url": "https://ghcr.io/v2/homebrew/core", 334 | "files": { 335 | "arm64_big_sur": { 336 | "cellar": ":any_skip_relocation", 337 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:2d4eb663c230a5531461272845ebe49b682126aeb271d048a39e336c2a7ecd4f", 338 | "sha256": "2d4eb663c230a5531461272845ebe49b682126aeb271d048a39e336c2a7ecd4f" 339 | }, 340 | "big_sur": { 341 | "cellar": ":any_skip_relocation", 342 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:1cdc09acfdb8ddb9dc2f3865bd330e2dce44743ee9979e8cacc7a89e804e34d3", 343 | "sha256": "1cdc09acfdb8ddb9dc2f3865bd330e2dce44743ee9979e8cacc7a89e804e34d3" 344 | }, 345 | "catalina": { 346 | "cellar": ":any_skip_relocation", 347 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:d693aab66a01eef79db5962b1dad628ce53d3061732cd86c06faa76b3000144d", 348 | "sha256": "d693aab66a01eef79db5962b1dad628ce53d3061732cd86c06faa76b3000144d" 349 | }, 350 | "mojave": { 351 | "cellar": ":any_skip_relocation", 352 | "url": "https://ghcr.io/v2/homebrew/core/stern/blobs/sha256:e0d9f83aa8ed11f4e1136f37ce1b6671d4ef29b98dee49634a1d50f22a962069", 353 | "sha256": "e0d9f83aa8ed11f4e1136f37ce1b6671d4ef29b98dee49634a1d50f22a962069" 354 | } 355 | } 356 | } 357 | }, 358 | "kubectx": { 359 | "version": "0.9.3", 360 | "bottle": { 361 | "rebuild": 0, 362 | "root_url": "https://ghcr.io/v2/homebrew/core", 363 | "files": { 364 | "all": { 365 | "cellar": ":any_skip_relocation", 366 | "url": "https://ghcr.io/v2/homebrew/core/kubectx/blobs/sha256:30c0b39d23e542bc936994a8c1a47705f0205e42e59cb043adaed21f3e992efa", 367 | "sha256": "30c0b39d23e542bc936994a8c1a47705f0205e42e59cb043adaed21f3e992efa" 368 | } 369 | } 370 | } 371 | }, 372 | "python@2": { 373 | "version": "2.7.17_1", 374 | "bottle": { 375 | "cellar": "/usr/local/Cellar", 376 | "prefix": "/usr/local", 377 | "files": { 378 | "catalina": { 379 | "url": "https://homebrew.bintray.com/bottles/python@2-2.7.17_1.catalina.bottle.tar.gz", 380 | "sha256": "accfaa922708f00afb69ab230199f96e6ecdddd248a1eca586ce1e5e5cfd732b" 381 | }, 382 | "mojave": { 383 | "url": "https://homebrew.bintray.com/bottles/python@2-2.7.17_1.mojave.bottle.tar.gz", 384 | "sha256": "54d3351d6be8268b2f5017894dcc8e083811dfa3812bdb9f79f989873b9a4542" 385 | }, 386 | "high_sierra": { 387 | "url": "https://homebrew.bintray.com/bottles/python@2-2.7.17_1.high_sierra.bottle.tar.gz", 388 | "sha256": "cfd5c6eeac37065d19f527bb0798a9caf1928bab3340cd545224861a3c82f219" 389 | } 390 | } 391 | } 392 | }, 393 | "docker-compose": { 394 | "version": "1.29.2", 395 | "bottle": { 396 | "rebuild": 0, 397 | "root_url": "https://ghcr.io/v2/homebrew/core", 398 | "files": { 399 | "arm64_big_sur": { 400 | "cellar": ":any", 401 | "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:67d4e74c8293c978dd8e4133fedbd138d388de7f073768bf427d42a62f98e384", 402 | "sha256": "67d4e74c8293c978dd8e4133fedbd138d388de7f073768bf427d42a62f98e384" 403 | }, 404 | "big_sur": { 405 | "cellar": ":any", 406 | "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:60d80060410d0556a0bd72a9f632d79fb54e6a63c99aa9c84bb952a558b7f0e2", 407 | "sha256": "60d80060410d0556a0bd72a9f632d79fb54e6a63c99aa9c84bb952a558b7f0e2" 408 | }, 409 | "catalina": { 410 | "cellar": ":any", 411 | "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:1b493a40b98311fa83c833cc935bbc6a9e0e3d60a251b6559fdddd9e071b9d30", 412 | "sha256": "1b493a40b98311fa83c833cc935bbc6a9e0e3d60a251b6559fdddd9e071b9d30" 413 | }, 414 | "mojave": { 415 | "cellar": ":any", 416 | "url": "https://ghcr.io/v2/homebrew/core/docker-compose/blobs/sha256:8db2876a849e55de80f69c34f7c13fbf5fd5f7e547406738f46841db5fb3691a", 417 | "sha256": "8db2876a849e55de80f69c34f7c13fbf5fd5f7e547406738f46841db5fb3691a" 418 | } 419 | } 420 | } 421 | }, 422 | "rke": { 423 | "version": "1.2.8", 424 | "bottle": { 425 | "rebuild": 0, 426 | "root_url": "https://ghcr.io/v2/homebrew/core", 427 | "files": { 428 | "arm64_big_sur": { 429 | "cellar": ":any_skip_relocation", 430 | "url": "https://ghcr.io/v2/homebrew/core/rke/blobs/sha256:54083beed14c0c861225d9ab0699e7a66bfe7b6777a5e4c30d49af4c15eab8b7", 431 | "sha256": "54083beed14c0c861225d9ab0699e7a66bfe7b6777a5e4c30d49af4c15eab8b7" 432 | }, 433 | "big_sur": { 434 | "cellar": ":any_skip_relocation", 435 | "url": "https://ghcr.io/v2/homebrew/core/rke/blobs/sha256:78c70c924911a86b00ecbc11fb2e154641b12014fb267282a67d2ab26ebe40ac", 436 | "sha256": "78c70c924911a86b00ecbc11fb2e154641b12014fb267282a67d2ab26ebe40ac" 437 | }, 438 | "catalina": { 439 | "cellar": ":any_skip_relocation", 440 | "url": "https://ghcr.io/v2/homebrew/core/rke/blobs/sha256:c0eeb73161d08e6e60c99e452d01544c4df218bc94270a5e644c3746e049fc87", 441 | "sha256": "c0eeb73161d08e6e60c99e452d01544c4df218bc94270a5e644c3746e049fc87" 442 | }, 443 | "mojave": { 444 | "cellar": ":any_skip_relocation", 445 | "url": "https://ghcr.io/v2/homebrew/core/rke/blobs/sha256:5411e2062eac433bf89b2d4970284c8b2eaeca272816fa87e8dd378eed56ac3a", 446 | "sha256": "5411e2062eac433bf89b2d4970284c8b2eaeca272816fa87e8dd378eed56ac3a" 447 | } 448 | } 449 | } 450 | }, 451 | "helm": { 452 | "version": "3.6.0", 453 | "bottle": { 454 | "rebuild": 0, 455 | "root_url": "https://ghcr.io/v2/homebrew/core", 456 | "files": { 457 | "arm64_big_sur": { 458 | "cellar": ":any_skip_relocation", 459 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:a634b6c75bf040bf5da284c1fc70c5c234852fba1d525fb29b6b1588e863b4d3", 460 | "sha256": "a634b6c75bf040bf5da284c1fc70c5c234852fba1d525fb29b6b1588e863b4d3" 461 | }, 462 | "big_sur": { 463 | "cellar": ":any_skip_relocation", 464 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:65bdb22434cc865a336b38bb2c53b5b0db14c71fb443d02fe7b64f6af5e7b358", 465 | "sha256": "65bdb22434cc865a336b38bb2c53b5b0db14c71fb443d02fe7b64f6af5e7b358" 466 | }, 467 | "catalina": { 468 | "cellar": ":any_skip_relocation", 469 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:fc02bd64309b5c7ebddbf30e02826a0df61bddc43d989bb0df5d4b9842e8ef8a", 470 | "sha256": "fc02bd64309b5c7ebddbf30e02826a0df61bddc43d989bb0df5d4b9842e8ef8a" 471 | }, 472 | "mojave": { 473 | "cellar": ":any_skip_relocation", 474 | "url": "https://ghcr.io/v2/homebrew/core/helm/blobs/sha256:78e275191a7b76c2be677a27fbbe27b540df2c0c02dcbc4e3f66436a84fcd5ff", 475 | "sha256": "78e275191a7b76c2be677a27fbbe27b540df2c0c02dcbc4e3f66436a84fcd5ff" 476 | } 477 | } 478 | } 479 | }, 480 | "git-lfs": { 481 | "version": "2.13.3", 482 | "bottle": { 483 | "rebuild": 0, 484 | "root_url": "https://ghcr.io/v2/homebrew/core", 485 | "files": { 486 | "arm64_big_sur": { 487 | "cellar": ":any_skip_relocation", 488 | "url": "https://ghcr.io/v2/homebrew/core/git-lfs/blobs/sha256:af433100a9ba1c1b222d01bee070704eb74cdd75038b7c333a9ff6e8e335375c", 489 | "sha256": "af433100a9ba1c1b222d01bee070704eb74cdd75038b7c333a9ff6e8e335375c" 490 | }, 491 | "big_sur": { 492 | "cellar": ":any_skip_relocation", 493 | "url": "https://ghcr.io/v2/homebrew/core/git-lfs/blobs/sha256:153252f96cb3d77c2980f18c5eab591f237b011f4426f1faf918ecdc51969a33", 494 | "sha256": "153252f96cb3d77c2980f18c5eab591f237b011f4426f1faf918ecdc51969a33" 495 | }, 496 | "catalina": { 497 | "cellar": ":any_skip_relocation", 498 | "url": "https://ghcr.io/v2/homebrew/core/git-lfs/blobs/sha256:c99996a1fbfee4c5d4d0ac3cd38d42d884224ab3f305566ed13309b6bc63b9b4", 499 | "sha256": "c99996a1fbfee4c5d4d0ac3cd38d42d884224ab3f305566ed13309b6bc63b9b4" 500 | }, 501 | "mojave": { 502 | "cellar": ":any_skip_relocation", 503 | "url": "https://ghcr.io/v2/homebrew/core/git-lfs/blobs/sha256:69d6da76ac82d66f0cf36352f7c65af24918241241fbda5fe4ab74030094e597", 504 | "sha256": "69d6da76ac82d66f0cf36352f7c65af24918241241fbda5fe4ab74030094e597" 505 | } 506 | } 507 | } 508 | }, 509 | "velero": { 510 | "version": "1.6.0", 511 | "bottle": { 512 | "rebuild": 0, 513 | "root_url": "https://ghcr.io/v2/homebrew/core", 514 | "files": { 515 | "arm64_big_sur": { 516 | "cellar": ":any_skip_relocation", 517 | "url": "https://ghcr.io/v2/homebrew/core/velero/blobs/sha256:9ec1edc47dc7cf10e58611986e504028787921953f43a27eddf75dfa28e59f9c", 518 | "sha256": "9ec1edc47dc7cf10e58611986e504028787921953f43a27eddf75dfa28e59f9c" 519 | }, 520 | "big_sur": { 521 | "cellar": ":any_skip_relocation", 522 | "url": "https://ghcr.io/v2/homebrew/core/velero/blobs/sha256:3793747c07f37e2088eab787d3cdbbf9b55c9a804787efa1e8cdf854407234ff", 523 | "sha256": "3793747c07f37e2088eab787d3cdbbf9b55c9a804787efa1e8cdf854407234ff" 524 | }, 525 | "catalina": { 526 | "cellar": ":any_skip_relocation", 527 | "url": "https://ghcr.io/v2/homebrew/core/velero/blobs/sha256:605826184cccbb5d34331dd5b410615667a921c9adf5a4ad3499f1140d62bb75", 528 | "sha256": "605826184cccbb5d34331dd5b410615667a921c9adf5a4ad3499f1140d62bb75" 529 | }, 530 | "mojave": { 531 | "cellar": ":any_skip_relocation", 532 | "url": "https://ghcr.io/v2/homebrew/core/velero/blobs/sha256:3b4b493abdc403991fc85f562a0234924c5fb2e4d9633d7696c9a3a4a11b08e0", 533 | "sha256": "3b4b493abdc403991fc85f562a0234924c5fb2e4d9633d7696c9a3a4a11b08e0" 534 | } 535 | } 536 | } 537 | } 538 | } 539 | }, 540 | "system": { 541 | "macos": { 542 | "catalina": { 543 | "HOMEBREW_VERSION": "3.1.11", 544 | "HOMEBREW_PREFIX": "/usr/local", 545 | "Homebrew/homebrew-core": "87e7f244b137f8a69b72253c612f12e2ef847b35", 546 | "CLT": "12.0.0.32.28", 547 | "Xcode": "12.4", 548 | "macOS": "10.15.7" 549 | } 550 | } 551 | } 552 | } 553 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # mac-setup 2 | 3 | ## Requirements 4 | 5 | - Brew : https://brew.sh/index_pt-br 6 | 7 | 8 | ## Using 9 | 10 | ```bash 11 | brew bundle install 12 | ``` 13 | --------------------------------------------------------------------------------