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>
10 lines
270 B
Bash
Executable File
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"
|