🖖 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>
24 lines
627 B
Markdown
24 lines
627 B
Markdown
# Custom Scripts
|
|
|
|
This directory contains custom scripts that will be symlinked to `~/bin`.
|
|
|
|
## Setup
|
|
|
|
1. The symlink script will link all scripts from this directory to `~/bin`
|
|
2. Make sure `~/bin` is in your PATH (add to `.zshrc`):
|
|
```bash
|
|
export PATH="$HOME/bin:$PATH"
|
|
```
|
|
|
|
## Adding New Scripts
|
|
|
|
1. Create your script in `~/dotfiles/bin/`
|
|
2. Make it executable: `chmod +x script_name`
|
|
3. Run the symlink script to link it to `~/bin`
|
|
|
|
## Script Guidelines
|
|
|
|
- Start with proper shebang: `#!/usr/bin/env bash` or `#!/usr/bin/env zsh`
|
|
- Add help/usage information
|
|
- Use meaningful names
|
|
- Document what the script does |