Skip to content

Instantly share code, notes, and snippets.

View arnaudlevy's full-sized avatar

Arnaud Levy arnaudlevy

View GitHub Profile
@arnaudlevy
arnaudlevy / fix_favicons.rb
Last active January 28, 2025 11:23
Fix Osuny Favicons
# https://github.com/follmann/favicon_maker
# gem install favicon_maker
require 'favicon_maker'
Dir.glob("./**/favicon.png").each do |png|
directory = png.gsub('favicon.png', '')
FaviconMaker.generate do
setup do
template_dir directory
output_dir directory
end