🖖 Features: - Master 'engage' script for one-command setup - 120+ CLI tools via Homebrew - 40+ Applications (casks + MAS apps) - Complete macOS system configuration - Security hardening and privacy settings - Obsidian knowledge vault setup - Comprehensive backup strategies - Automated symlink management Live long and prosper\! 🚀 🤖 Generated with Claude Code (https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
Custom Scripts
This directory contains custom scripts that will be symlinked to ~/bin.
Setup
- The symlink script will link all scripts from this directory to
~/bin - Make sure
~/binis in your PATH (add to.zshrc):export PATH="$HOME/bin:$PATH"
Adding New Scripts
- Create your script in
~/dotfiles/bin/ - Make it executable:
chmod +x script_name - Run the symlink script to link it to
~/bin
Script Guidelines
- Start with proper shebang:
#!/usr/bin/env bashor#!/usr/bin/env zsh - Add help/usage information
- Use meaningful names
- Document what the script does