mirror of
https://github.com/sayyadirfanali/Myna.git
synced 2026-03-13 05:35:24 +01:00
15 lines
267 B
Python
15 lines
267 B
Python
#!/usr/bin/env python3
|
|
import fontforge
|
|
|
|
font = fontforge.open("Myna.sfd")
|
|
font.generate("Myna.otf")
|
|
|
|
if "alt_l" in font:
|
|
font.selection.select("alt_l")
|
|
font.copy()
|
|
font.selection.select("l")
|
|
font.paste()
|
|
|
|
font.generate("Myna-alt_l.otf")
|
|
font.close()
|