FollieHiyuki-dotfiles/home/.local/bin/genfontimage

14 lines
400 B
Plaintext
Raw Normal View History

2021-02-13 11:28:59 -05:00
#!/bin/sh
PREVIEW_TEXT="ABCDEFGHIJKLM\nNOPQRSTUVWXYZ\nabcdefghijklm\nnopqrstuvwxyz\n1234567890\n!@$\%<>(){}[]\n愛してるおかえりなさい\n      \n😀👌🙋🐱🦀⛈ 🏀🛠"
BG="#2e3440"
FG="#eceff4"
convert -size 800x800 xc:"$BG" \
-gravity center \
-pointsize 40 \
-font "$1" \
-fill "$FG" \
-annotate +0+0 "$PREVIEW_TEXT" \
-flatten "$2"