mirror of
https://github.com/kovidgoyal/kitty
synced 2026-06-08 22:28:24 +02:00
Make CLI Only kittens run in overlay windows when run via the kitten action mapping by default.
7 lines
149 B
Python
7 lines
149 B
Python
if __name__ == '__main__':
|
|
import os
|
|
import sys
|
|
|
|
from kitty.constants import kitten_exe
|
|
os.execlp(kitten_exe(), 'kitten', *sys.argv)
|