mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 08:26:56 +00:00
7 lines
210 B
Python
Executable file
7 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())
|