mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-24 17:27:39 +02:00
9 lines
198 B
Python
9 lines
198 B
Python
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_exe(), 'kitten', *args)
|