mirror of
https://github.com/archlinux-jerry/pkgbuilds
synced 2024-11-14 18:12:23 +08:00
10 lines
231 B
Python
Executable file
10 lines
231 B
Python
Executable file
from json import load
|
|
from sys import argv
|
|
|
|
ttf = fontforge.open(argv[1])
|
|
for emoji in load(open('emoji.json')):
|
|
try:
|
|
ttf.removeGlyph(int(emoji['unified'], 16))
|
|
except ValueError:
|
|
pass
|
|
ttf.generate(argv[1])
|