commit 49cc5f1f76d86349079d5c16a561d610f2334dad
parent a33da11f7f28ff394d26290a103641d1c2b22664
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date: Tue, 13 Oct 2020 07:52:43 +0200
txt2pdf: increase font size and turn off quiet option
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.local/bin/txt2pdf b/.local/bin/txt2pdf
@@ -4,10 +4,10 @@ if [ $# -lt 1 ]; then
exit 1
fi
-fontsize=11
+fontsize=12
for f in "$@"; do
- enscript "$f" -qBf "Courier${fontsize}" \
+ enscript "$f" -Bf "Courier${fontsize}" \
-I "cat %s | iconv -c -f utf-8 -t iso-8859-1//translit" -p - \
| ps2pdf - "${f%.*}.pdf"
done