Files
kicad-layout-replicator/local-deploy.sh
mikael-lovqvists-claude-agent 27b79d38a7 Add component table plugin for KiCad PCB editor
Shows a sortable table of all board components with columns for
designation, value, library, package, and sheet instance.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-13 16:31:05 +00:00

10 lines
270 B
Bash
Executable File

#!/usr/bin/env bash
set -e
PLUGIN_NAME='component_table'
PLUGIN_SRC="$(realpath plugins/$PLUGIN_NAME)"
KICAD_PLUGINS=~/.local/share/kicad/9.0/scripting/plugins
ln -sf "$PLUGIN_SRC" "$KICAD_PLUGINS/$PLUGIN_NAME"
echo "Linked $PLUGIN_SRC -> $KICAD_PLUGINS/$PLUGIN_NAME"