kitty/build-terminfo
Kovid Goyal 3bb429dfa8 Add a terminfo file for kitty
Just now it is simply a copy of the one from termite. Will adjust later,
if needed.
2016-10-17 18:20:08 +05:30

8 lines
210 B
Python
Executable File

#!/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())