18 lines
489 B
Bash
Executable file
18 lines
489 B
Bash
Executable file
#!/bin/bash
|
|
# Wrapper script for the tinwhistle scores
|
|
#
|
|
# It uses (standard) commandline options of lilypond
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
LIB=$DIR/../lib
|
|
STYLESHEET=$LIB/styles/tinwhistle.sly
|
|
|
|
# In case tinwhistle.ily is included in file
|
|
#+ add it to the search path
|
|
TINWHISTLE_DIR=$LIB/tinwhistle/
|
|
|
|
# Options by this script
|
|
OPTIONS="-dno-strip-output-dir -dno-point-and-click"
|
|
|
|
# Execute
|
|
lilypond -dinclude-settings=$STYLESHEET -I $TINWHISTLE_DIR $OPTIONS $@
|