Files
dotfiles/bin
David F GliddenandClaude 9d9c0ad241 🦇 Batman returns with enhanced powers
- Enhanced man function opens in new window with bat + Nord theme
- Batman alias now uses enhanced man function for muscle memory
- Added license scanner utility
- Fixed shell loading to use only dotfiles versions
- Added dotfiles/bin to PATH for custom scripts
- Removed legacy .zsh loading conflicts
- Fixed bat path issue for new shell contexts

Following prime directive: respecting muscle memory while enhancing capability

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-07-28 23:34:11 +02: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