Files
dotfiles/bin
David F GliddenandClaude Opus 4.6 066a47a26b Audit and optimize for CapableMind development
Brewfile: stripped to essential tools (~600MB freed), removed boost,
cmake, aerc, newsboat, fontforge, starship, and 24 auto-dependencies.
Added caffeine, ollama, fastfetch, ocrmypdf, tea, sshpass, vitetris.
Dropped 1password, iterm2, github-desktop, hazel, swiftbar, oversight.

Shell: fixed all stale references (fzf, zoxide, starship, old paths,
Homebrew node aliases). Updated project paths to ~/_Dev/. Added
CapableMind aliases (cm, bmf, bmf-health, bmf-status, bmf-logs).

Configs: removed iterm2, neofetch, swiftbar configs. Added capablemind
(launchd plists, MCP example, bmf-start script). Updated SSH config
with git.skemantix.com. Added CLAUDE.md to dotfiles.

Scripts: consolidated 3 backup scripts into 1 (backup-all-secrets.sh),
added pass store backup. Added setup-capablemind.sh for full environment
reconstruction. Updated symlinks.sh for new config structure.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 23:45:33 +01:00
..
2025-07-28 23:34:11 +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