# 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