Add a terminfo file for kitty

Just now it is simply a copy of the one from termite. Will adjust later,
if needed.
This commit is contained in:
Kovid Goyal
2016-10-17 18:19:59 +05:30
parent 5d7b644000
commit 3bb429dfa8
4 changed files with 199 additions and 1 deletions

7
build-terminfo Executable file
View File

@@ -0,0 +1,7 @@
#!/usr/bin/env python
import os
base = os.path.dirname(os.path.abspath(__file__))
os.chdir(base)
os.environ['TERMINFO'] = os.path.join(base, 'terminfo')
os.execvp('tic', 'tic terminfo/kitty.terminfo'.split())