diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | _plugins/generate-favicon.rb | 16 | ||||
-rw-r--r-- | default.nix | 1 |
3 files changed, 18 insertions, 0 deletions
@@ -6,3 +6,4 @@ /_site/ /.jekyll-cache/ /images/graphviz/ +/static/favicon.png diff --git a/_plugins/generate-favicon.rb b/_plugins/generate-favicon.rb new file mode 100644 index 0000000..11c038a --- /dev/null +++ b/_plugins/generate-favicon.rb @@ -0,0 +1,16 @@ +module Jekyll + class FaviconGenerator < Generator + safe true + priority :high + + SIZE = 420 + + def generate(site) + svg = 'static/favicon.svg' + png = 'static/favicon.png' + unless File.exist? png then + puts `inkscape -o #{png} -w #{SIZE} -h #{SIZE} #{svg}` + end + end + end +end diff --git a/default.nix b/default.nix index 6f4ea2b..443d2c8 100644 --- a/default.nix +++ b/default.nix @@ -29,6 +29,7 @@ let flac mediainfo mkvtoolnix-cli + inkscape perl graphviz |