app
Adom Footprint
Public Made by Adomby adom
KiCad footprint creator with layer HUD viewer and delivery to KiCad/Fusion 360
#!/bin/bash
# install.sh for adom-footprint (app).
# Runs from the extracted module directory (~/project/adom_modules/adom-footprint/).
set -euo pipefail
DIR="$(cd "$(dirname "$0")" && pwd)"
cd "$DIR"
# App install: link the binary onto PATH.
BIN_DIR="${HOME}/.local/bin"
mkdir -p "$BIN_DIR"
install -m 0755 "$DIR/bin/adom-footprint" "$BIN_DIR/adom-footprint"
echo "Installed adom-footprint -> $BIN_DIR/adom-footprint"