This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # PATHS | |
| export ZSH=$HOME/.oh-my-zsh | |
| # THEME | |
| export ZSH_THEME='gnzh' | |
| # ALIAS | |
| alias cl='clear' | |
| alias gcr='git clone' | |
| alias cdh='cd ~/ && cl' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # Configure Latest Version | |
| FW_VERSION="v1.6.1" | |
| # Firmware Filename | |
| FW_FILENAME="mmdvm_hs_dual_hat_fw.bin" | |
| # Download latest Firmware | |
| echo "Downloading firmware..." |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # To get this script and run copy and paste the following in to the terminal: | |
| # bash <(curl -s https://gist.githubusercontent.com/martynhaigh/b45d9370995e48a4cd5354e8305652ab/raw/new_mac_setup.sh) | |
| if [ `uname -s` != "Darwin" ]; then | |
| printf " ❗️ This only works on a Mac\n" | |
| exit | |
| fi | |
| DEBUG=false | |
| while getopts d: flag |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| # ============================================================================= | |
| # Unified macOS Developer Setup Script | |
| # ============================================================================= | |
| # Merged from: 0.sh, 1.sh, 5.sh, 10.sh, vai.sh, vai2.sh, vai3.sh | |
| # Updated: 2026-01-02 | |
| # Author: vitorcalvi | |
| # | |
| # This script combines the best features from all source scripts: | |
| # - sudo caching (vai3.sh) - prevents repeated password prompts |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| # Bootstrap script for fresh macOS setup with chezmoi dotfiles | |
| # Usage: curl -fsSL https://gist.githubusercontent.com/.../bootstrap.sh | bash | |
| set -euo pipefail | |
| echo "🚀 Starting dotfiles bootstrap..." | |
| # 1. Install Homebrew if not present | |
| if ! command -v brew &>/dev/null; then |
OlderNewer