Changing from i3 to dwm - tidied ip bin folder

This commit is contained in:
Jonathan Hodgson 2019-05-17 12:52:12 +01:00
parent 6aaf779227
commit a0ef393f2b
47 changed files with 254 additions and 245 deletions

14
bin/conversion/otf2ttf Executable file
View file

@ -0,0 +1,14 @@
#!/usr/bin/env python
import fontforge as ff
import sys
args = sys.argv[1:]
if args[0] == '--help':
print("otf2ttf <font>")
else:
otf = args[0]
ttf = otf.replace('otf','ttf')
print( otf + ' => ' + ttf )
f = ff.open( otf )
f.generate( ttf )