mirror of
https://github.com/felixfoertsch/EurKEY-macOS.git
synced 2026-04-16 06:28:28 +02:00
9 lines
249 B
Bash
Executable File
9 lines
249 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Generate keyboard layout PDFs from .keylayout files.
|
|
# Requires: fpdf2 (pip install fpdf2)
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
exec python3 "${SCRIPT_DIR}/generate_layout_pdf.py" "$@"
|