mirror of
https://github.com/felixfoertsch/EurKEY-macOS.git
synced 2026-04-16 06:28:28 +02:00
interactive layout viewer with version tabs, modifier key highlighting, dead key compositions, ISO enter spanning two rows, arrow cluster. fix keylayout parser mapSet range handling, update PDF build scripts, move eurkey-layout-complete.pdf to spec/. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
11 lines
314 B
Bash
Executable File
11 lines
314 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Generate keyboard layout PDFs from .keylayout files.
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# auto-install Python dependencies
|
|
python3 -c "import fpdf" 2>/dev/null || pip3 install --quiet fpdf2
|
|
|
|
exec python3 "${SCRIPT_DIR}/generate_layout_pdf.py" "$@"
|