17 lines
385 B
Python
Executable File
17 lines
385 B
Python
Executable File
#!/usr/bin/env python3
|
|
|
|
import os
|
|
import sys
|
|
|
|
base = os.path.dirname(os.path.abspath(__file__))
|
|
os.chdir(base)
|
|
sys.path.insert(0, base)
|
|
|
|
from kitty.terminfo import generate_terminfo # noqa
|
|
|
|
with open('terminfo/kitty.terminfo', 'w') as f:
|
|
f.write(generate_terminfo())
|
|
|
|
os.environ['TERMINFO'] = os.path.join(base, 'terminfo')
|
|
os.execvp('tic', 'tic terminfo/kitty.terminfo'.split())
|