This commit is contained in:
Kovid Goyal
2024-07-05 12:37:54 +05:30
parent 2dc478f7df
commit d8dc237af7

View File

@@ -1,6 +1,8 @@
import os
from kitty.constants import kitten_exe
def main(args: 'list[str]') -> None:
# allow running this kitten via map key kitten choose-fonts
os.execlp('kitten', 'kitten', *args)
os.execlp(kitten_exe(), 'kitten', *args)