iterm stuff added to tree (and trackable)

This commit is contained in:
Howland Owl 2017-04-25 18:42:51 +03:00
parent 705d6d4dc9
commit 1e0d8bdc07
1599 changed files with 99751 additions and 0 deletions

8
iterm2colors/tools/genMD.py Executable file
View file

@ -0,0 +1,8 @@
import os
with open('README.md', 'w') as mkdn:
mkdn.write("Screenshots\n===\n")
for f in [f for f in os.listdir('.') if os.path.isfile(f)]:
mkdn.write("`%s`\n\n" % f)
mkdn.write("![image](%s)\n\n" % f)