Document console font requirement for QR code

This commit is contained in:
Juerd Waalboer 2019-05-12 22:41:11 +02:00
parent a6ac9368dd
commit 28e45dc8a2
3 changed files with 21 additions and 0 deletions

View file

@ -14,6 +14,8 @@ line (space separated), but that's an unintended feature...
Refer to [RevBank::Plugins](https://metacpan.org/pod/RevBank::Plugins) for documentation about writing plugins.
Plugins themselves may have some documentation in the respective plugin files.
# AUTHOR
Juerd Waalboer <#####@juerd.nl>

View file

@ -1,5 +1,22 @@
#!perl
# Note for Linux console users: this thing assumes UTF-8 support (so make sure
# you're running under a UTF-8 locale!), but you will also need a font that
# actually has all of the characters. Most console fonts do not support the
# half blocks, and will result in a diamond instead.
#
# At least on Debian, this one works:
#
# setfont /usr/share/consolefonts/Uni2-VGA14.psf.gz
#
# To make this the default, run "dpkg-reconfigure console-setup", and pick:
# - "UTF-8"
# - "Combined - Latin; Slavic Cyrillic; Greek"
# - "VGA"
# - "8x14"
# and then reboot
use IPC::Open2 qw(open2);
use List::Util qw(sum);

View file

@ -230,6 +230,8 @@ line (space separated), but that's an unintended feature...
Refer to L<RevBank::Plugins> for documentation about writing plugins.
Plugins themselves may have some documentation in the respective plugin files.
=head1 AUTHOR
Juerd Waalboer <#####@juerd.nl>