Files
dotfiles/bin
David F GliddenandClaude 389febb161 🚀 Complete machine migration setup with encrypted backups
- Added comprehensive configuration files for seamless migration
- SSH, GPG, Karabiner, iTerm2, Neofetch, SwiftBar configs
- Pass license management system with templates and documentation
- Enhanced shell functions with MAS updates and moon phase tracking
- Comprehensive encrypted backup system (GPG AES256)
- Included encrypted backups of all sensitive data
- BBEdit as default editor with proper configuration
- Fixed shell compatibility issues
- Merged existing .zsh configs with improvements

Security:
- All sensitive data is GPG encrypted (.gpg files)
- Private keys excluded from version control
- Only configs and encrypted backups are tracked

Following prime directive: durable, thoughtful solutions

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-28 23:10:36 +02:00
..

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):
    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