This repository has been archived on 2022-08-21. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/home/.local/bin/genfontimage

19 lines
495 B
Plaintext
Raw Normal View History

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