Skip to content

Instantly share code, notes, and snippets.

@mrjk
Created February 14, 2023 18:20
Show Gist options
  • Save mrjk/0fe659354e0192832355a819cad6f483 to your computer and use it in GitHub Desktop.
Save mrjk/0fe659354e0192832355a819cad6f483 to your computer and use it in GitHub Desktop.
Generate favicon from svg
#!/bin/bash
# Usage example:
# gen_favicon.sh SVG_FILE.svg OUT_FILE.ico
set -eu
# Generate favicon from official logo
convert -density 300 -define icon:auto-resize=256,128,96,64,48,32,16 -background none $1 $2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment