This file contains 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/sh | |
# run "sh setup.sh" | |
# BACKUP BEFORE WIPE: | |
# SSH keys | |
# Fonts | |
# Keychain passwords | |
# files outside dropbox: downloads, documents, photos, photobooth | |
# bash/zsh profile |
This file contains 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/sh | |
set -eux | |
hdiutil create -o /tmp/ventura -size 16384m -volname ventura -layout SPUD -fs HFS+J | |
hdiutil attach /tmp/ventura.dmg -noverify -mountpoint /Volumes/ventura | |
sudo /Applications/Install\ macOS\ Ventura\.app//Contents/Resources/createinstallmedia --volume /Volumes/vent\ | |
ura --nointeraction | |
hdiutil eject -force /Volumes/Install\ macOS\ Ventura | |
hdiutil convert /tmp/ventura.dmg -format UDTO -o ~/Desktop/ventura.cdr | |
mv ~/Desktop/ventura.cdr ~/Desktop/ventura.iso |
This file contains 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/sh | |
#################################################################### | |
# Check for Homebrew, install if we don't have it | |
#################################################################### | |
if test ! $(which brew); then | |
echo "Installing homebrew..." | |
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
fi |
This file contains 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 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..." |
OlderNewer