bin/code-to-pdf @ 8fce24c92b98

Fix karabiner syntax shit
author Steve Losh <steve@stevelosh.com>
date Sun, 08 Oct 2017 16:01:13 -0400
parents 85bedd1649b9
children 07fbabc1f02d
#!/usr/bin/env bash

TITLE="$1"
shift

enscript -1 --media=A4 \
    --toc \
    --header '%H - $N | | page $% of $= in file $v' \
    --font "Menlo-Regular@8.5" \
    --header-font "Menlo-Bold@10" \
    --margins=60:60:18:60 \
    --fancy-header=sjl \
    --title "$TITLE" \
    --baselineskip 3 \
    --line-numbers \
    --highlight \
    --color \
    --mark-wrapped-lines=arrow \
    -p - \
    --word-wrap $* \
    | pstopdf -i -o code.pdf