diff options
Diffstat (limited to 'source/img/README.rst')
-rw-r--r-- | source/img/README.rst | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/img/README.rst b/source/img/README.rst new file mode 100644 index 00000000..cb7a633c --- /dev/null +++ b/source/img/README.rst @@ -0,0 +1,11 @@ +The icon and favicon files are generated via the following commands: :: + + cd source/img + xelatex icon.tex + convert icon.pdf icon.svg + for size in 16 32 48 144 152; do convert icon.pdf -density 400 -resize ${size}x${size} favicon-${size}.png; done + optipng favicon-16.png favicon-32.png favicon-48.png favicon-144.png favicon-152.png + convert favicon-16.png favicon-32.png favicon-48.png ../favicon.ico + rm favicon-16.png favicon-32.png favicon-48.png + +Credit to `audreyr/favicon-cheat-sheet <https://github.com/audreyr/favicon-cheat-sheet>`_ for favicon handling tips. |