Document console font requirement for QR code
This commit is contained in:
parent
a6ac9368dd
commit
28e45dc8a2
3 changed files with 21 additions and 0 deletions
|
@ -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.
|
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
|
# AUTHOR
|
||||||
|
|
||||||
Juerd Waalboer <#####@juerd.nl>
|
Juerd Waalboer <#####@juerd.nl>
|
||||||
|
|
|
@ -1,5 +1,22 @@
|
||||||
#!perl
|
#!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 IPC::Open2 qw(open2);
|
||||||
use List::Util qw(sum);
|
use List::Util qw(sum);
|
||||||
|
|
||||||
|
|
2
revbank
2
revbank
|
@ -230,6 +230,8 @@ line (space separated), but that's an unintended feature...
|
||||||
|
|
||||||
Refer to L<RevBank::Plugins> for documentation about writing plugins.
|
Refer to L<RevBank::Plugins> for documentation about writing plugins.
|
||||||
|
|
||||||
|
Plugins themselves may have some documentation in the respective plugin files.
|
||||||
|
|
||||||
=head1 AUTHOR
|
=head1 AUTHOR
|
||||||
|
|
||||||
Juerd Waalboer <#####@juerd.nl>
|
Juerd Waalboer <#####@juerd.nl>
|
||||||
|
|
Loading…
Add table
Reference in a new issue