mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-20 07:24:41 +02:00
7 lines
154 B
Python
7 lines
154 B
Python
import os
|
|
|
|
|
|
def main(args: 'list[str]') -> None:
|
|
# allow running this kitten via map key kitten choose-fonts
|
|
os.execlp('kitten', 'kitten', *args)
|